parcoursmob-default-theme/web/layouts/beneficiaries/_partials/beneficiary-organized-carpo...

74 lines
3.6 KiB
HTML

{{define "beneficiary_organized_carpool"}}
<div class="py-6">
{{if .ViewState.organized_carpool_stats}}
<div class="py-5 text-center">
<p class="text-lg">Trajets réalisés : {{ .ViewState.organized_carpool_stats.count }}</p>
<p class="text-lg">Kilomètres réalisés : {{ .ViewState.organized_carpool_stats.km}} km</p>
</div>
{{end}}
<div class="text-center py-5">
<a href="/app/journeys/?passengerid={{.ViewState.beneficiary.ID}}" class="inline-flex">
<button type="button" class="px-4 py-2 border border-transparent text-sm font-medium rounded-2xl shadow-sm text-white bg-co-blue hover:bg-co-blue focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-100 focus:ring-co-blue">Chercher un trajet</button>
</a>
</div>
{{if .ViewState.organized_carpool_bookings}}
<div class="py-5">
<h4 class="text-lg font-medium text-gray-900 mb-4 text-center">Historique des covoiturages solidaires</h4>
<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">Date</th>
<th scope="col" class="py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900 sm:pl-6">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">Départ</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</th>
<th scope="col" class="py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900 sm:pl-6">Statut</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_carpool_bookings}}
{{if or (eq .Status.String "CONFIRMED") (eq .Status.String "WAITING_DRIVER_CONFIRMATION")}}
<tr>
<td class="py-4 pl-4 pr-3 text-sm sm:pl-6">
{{timeFormat .PassengerPickupDate.AsTime "02/01/2006 15:04"}}
</td>
<td class="py-4 pl-4 pr-3 text-sm sm:pl-6">
{{if .Driver}}
<a class="text-co-blue" href="/app/organized-carpool/drivers/{{.Driver.Id}}">
{{ (index $.ViewState.organized_carpool_drivers_map .Driver.Id).Data.first_name }}
{{ (index $.ViewState.organized_carpool_drivers_map .Driver.Id).Data.last_name }}
</a>
{{end}}
</td>
<td class="py-4 pl-4 pr-3 text-sm sm:pl-6">
{{.PassengerPickupAddress}}
</td>
<td class="py-4 pl-4 pr-3 text-sm sm:pl-6">
{{.PassengerDropAddress}}
</td>
<td class="whitespace-nowrap py-4 pl-4 pr-3 text-sm sm:pl-6">
{{if eq .Status.String "CONFIRMED"}}
<span class="p-1 px-2 text-xs bg-co-green rounded-2xl">Confirmé</span>
{{else if eq .Status.String "WAITING_DRIVER_CONFIRMATION"}}
<span class="p-1 px-2 text-xs bg-gray-300 rounded-2xl">Attente confirmation</span>
{{end}}
</td>
<td class="whitespace-nowrap py-4 pl-4 pr-3 text-sm sm:pl-6">
<a class="text-co-blue" href="/app/organized-carpool/bookings/{{.Id}}">Voir</a>
</td>
</tr>
{{end}}
{{end}}
</tbody>
</table>
</div>
{{else}}
<div class="py-5">
<p class="text-sm text-gray-500 text-center">Aucun covoiturage solidaire enregistré</p>
</div>
{{end}}
</div>
{{end}}