69 lines
2.6 KiB
HTML
69 lines
2.6 KiB
HTML
|
|
{{define "journeys_organized_carpool"}}
|
|
{{if .ViewState.organized_carpools}}
|
|
{{ if eq (len .ViewState.organized_carpools) 0}}
|
|
<p class="p-12 text-gray-500 text-center text-md">Aucun covoitureur solidaire disponible pour ce trajet.</p>
|
|
{{else}}
|
|
|
|
<table class="min-w-full divide-y divide-gray-300 border-gray-300 border-t-1">
|
|
<thead class="bg-gray-50">
|
|
<tr>
|
|
<th scope="col"
|
|
class="py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900 sm:pl-6">
|
|
Covoitureurs solidaires
|
|
</th>
|
|
<th scope="col"
|
|
class="py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900 sm:pl-6">
|
|
Départ conducteur
|
|
</th>
|
|
<th scope="col"
|
|
class="py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900 sm:pl-6">
|
|
Arrivée conducteur
|
|
</th>
|
|
<th scope="col"
|
|
class="py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900 sm:pl-6">
|
|
Date et heure
|
|
</th>
|
|
<th scope="col"
|
|
class="py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900 sm:pl-6">
|
|
Profil validé
|
|
</th>
|
|
<th scope="col"
|
|
class="py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900 sm:pl-6">
|
|
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="divide-y divide-gray-200 bg-white">
|
|
{{ range .ViewState.organized_carpools }}
|
|
{{ $driver := (index $.ViewState.solidarity_drivers .Driver.Id)}}
|
|
<tr>
|
|
<td class="whitespace-nowrap py-4 pl-4 pr-3 text-sm sm:pl-6">{{ $driver.Data.first_name }} {{ $driver.Data.last_name }}</td>
|
|
<td class="py-4 pl-4 pr-3 text-sm sm:pl-6">{{ .DriverDepartureAddress }}</td>
|
|
<td class="py-4 pl-4 pr-3 text-sm sm:pl-6">{{ .DriverArrivalAddress }}</td>
|
|
<td class="whitespace-nowrap py-4 pl-4 pr-3 text-sm sm:pl-6">
|
|
{{ if .PassengerPickupDate }}
|
|
{{ .PassengerPickupDate.AsTime.Format "02/01/2006 15:04" }}
|
|
{{ end }}
|
|
</td>
|
|
<td class="py-4 pl-4 pr-3 text-sm sm:pl-6">
|
|
{{if carpoolDriverValidatedProfile $driver (carpoolDocuments $driver.ID) }}
|
|
<span class="p-1 px-2 text-xs bg-co-green rounded-2xl">Oui</span>
|
|
{{else}}
|
|
<span class="p-1 px-2 text-xs bg-co-red text-white rounded-2xl">Non</span>
|
|
{{end}}
|
|
</td>
|
|
<td class="whitespace-nowrap py-4 pl-4 pr-3 text-sm sm:pl-6">
|
|
<a class="text-co-blue hover:text-co-blue"
|
|
href="/app/organized-carpool/drivers/{{$driver.ID}}/journeys/{{.Id}}?passengerid={{$.ViewState.passengerid}}">
|
|
Organiser
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|
|
{{end}}
|
|
{{end}}
|
|
{{end}}
|