parcoursmob-default-theme/web/layouts/vehicles_management/_partials/vehicles-list.html

124 lines
7.8 KiB
HTML
Raw Normal View History

2022-11-06 17:19:13 +00:00
{{define "vehicles_list"}}
<div class="max-w-7xl mx-auto px-4 sm:px-6 md:px-8">
<div class="mt-8 flex flex-col">
<div class="-my-2 -mx-4 overflow-x-auto sm:-mx-6 lg:-mx-8">
<div class="inline-block min-w-full py-2 align-middle md:px-6 lg:px-8">
<div class="overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg">
<table class="min-w-full divide-y divide-gray-300">
<thead class="bg-gray-50">
<tr>
2023-02-23 15:46:38 +00:00
<th scope="col"
class="py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900 sm:pl-6">
2023-02-24 16:23:27 +00:00
Statut Réservation
2023-02-23 15:46:38 +00:00
</th>
2022-11-06 17:19:13 +00:00
<th scope="col"
class="py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900 sm:pl-6">
Numéro (Immat / Bicycode)
</th>
<th scope="col" class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900 sm:pl-6">
Type
</th>
<th scope="col" class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900 sm:pl-6">
Modèle
</th>
<th scope="col" class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900 sm:pl-6">
Lieu
</th>
<th scope="col" class="relative py-3.5 pl-3 pr-4 sm:pr-6">
<span class="sr-only">Actions</span>
</th>
</tr>
</thead>
<tbody class="divide-y divide-gray-200 bg-white">
{{range .ViewState.vehicles}}
<tr>
2023-02-24 16:23:27 +00:00
<td class="whitespace-nowrap py-4 pl-4 pr-3 text-sm sm:pl-6 text-center">
<div class="flex flex-col px-6">
2023-02-24 12:51:25 +00:00
{{if not .Bookings}}
<span class="mt-1 p-1 bg-gray-500 text-white text-xs font-bold rounded-xl" >
Disponible
</span>
{{else if len .Bookings | eq 1}}
{{range .Bookings}}
{{if .Data.administrator_unavailability}}
<span class="mt-1 p-1 bg-black text-white text-xs font-bold rounded-xl" >
Retiré
</span>
{{else if eq .Status -1 }}
<span class="mt-1 p-1 bg-gray-500 text-white text-xs font-bold rounded-xl" >
Disponible
</span>
{{else if eq .Status 1 }}
<span class="mt-1 p-1 bg-co-blue text-white text-xs font-bold rounded-xl" >
A venir
</span>
{{else if eq .Status 0 }}
<span class="mt-1 p-1 bg-co-green text-white text-xs font-bold rounded-xl" >
En cours
</span>
{{end}}
{{end}}
2023-03-03 15:58:47 +00:00
{{else if gt (len .Bookings) 1}}
{{range .Bookings}}
2023-02-23 15:46:38 +00:00
{{if .Data.administrator_unavailability}}
2023-02-24 09:53:27 +00:00
<span class="mt-1 p-1 bg-black text-white text-xs font-bold rounded-xl" >
2023-02-23 15:46:38 +00:00
Retiré
</span>
{{else}}
{{if eq .Status 1 }}
2023-02-24 09:53:27 +00:00
<span class="mt-1 p-1 bg-co-blue text-white text-xs font-bold rounded-xl" >
2023-02-23 15:46:38 +00:00
A venir
</span>
2023-02-24 12:51:25 +00:00
{{else if eq .Status 0 }}
2023-02-24 09:53:27 +00:00
<span class="mt-1 p-1 bg-co-green text-white text-xs font-bold rounded-xl" >
2023-02-23 15:46:38 +00:00
En cours
</span>
{{end}}
{{end}}
2023-03-03 15:58:47 +00:00
{{end}}
{{$allAvailable := true}}
{{range .Bookings}}
{{if ne .Status -1}}
{{ $allAvailable = false }}
2023-03-06 09:49:24 +00:00
{{break}}
2023-03-03 15:58:47 +00:00
{{end}}
{{end}}
{{if $allAvailable}}
<span class="mt-1 p-1 bg-gray-500 text-white text-xs font-bold rounded-xl" >
Disponible
</span>
{{end}}
2023-02-24 12:51:25 +00:00
{{end}}
2023-02-24 16:23:27 +00:00
</div>
2023-02-23 15:46:38 +00:00
</td>
2022-11-06 17:19:13 +00:00
<td class="whitespace-nowrap py-4 pl-4 pr-3 text-sm sm:pl-6">
<div class="text-gray-900" >{{.Data.licence_plate}}</div>
</td>
<td class="whitespace-nowrap py-4 pl-4 pr-3 text-sm sm:pl-6">
2022-11-07 00:26:09 +00:00
<div class="text-gray-900" >
{{.Type}}
{{if eq .Type "Voiture"}}
{{ if .Data.automatic}} (boite auto){{ end }}
{{end}}
</div>
2022-11-06 17:19:13 +00:00
</td>
<td class="whitespace-nowrap py-4 pl-4 pr-3 text-sm sm:pl-6">
<div class="text-gray-900" >{{.Data.name}}</div>
</td>
<td class="whitespace-nowrap py-4 pl-4 pr-3 text-sm sm:pl-6">
<div class="text-gray-900" >{{if .Data.address}}{{.Data.address.properties.label}}{{end}}</div>
</td>
<td class="whitespace-nowrap py-4 pl-4 pr-3 text-sm sm:pl-6">
<a href="/app/vehicles-management/fleet/{{.ID}}"
class="text-co-blue hover:text-co-blue">Voir</a>
</td>
</tr>
{{end}}
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
{{end}}