49 lines
2.5 KiB
HTML
49 lines
2.5 KiB
HTML
|
{{define "vehicle_diags"}}
|
||
|
{{ $calendarIcon := .IconSet.Icon "hero:outline/calendar" "h-6 w-6" }}
|
||
|
{{ $carIcon := .IconSet.Icon "tabler-icons:car" "h-6 w-6"}}
|
||
|
<div class="bg-white shadow sm:rounded-lg">
|
||
|
<div class="px-4 py-5 sm:px-6">
|
||
|
<h2 id="timeline-title" class="text-lg font-medium text-gray-900">Diagnostiques réalisés</h2>
|
||
|
<a href="{{.ViewState.vehicle.ID}}/create-diag">
|
||
|
<button type="button"
|
||
|
class="inline-flex items-center justify-center rounded-2xl border border-transparent bg-co-blue px-4 py-2 text-sm font-medium text-white shadow-sm focus:outline-none focus:ring-2 focus:ring-ci-blue focus:ring-offset-2 sm:w-auto">
|
||
|
{{$.IconSet.Icon "hero:outline/plus-circle" "h-5 w-5 mr-3"}}
|
||
|
Créer un dignostque
|
||
|
</button>
|
||
|
</a>
|
||
|
</div>
|
||
|
<div class="border-t border-gray-200">
|
||
|
{{ $diagCount := len .ViewState.diags }}
|
||
|
<ul role="list" class="divide-y divide-gray-200 flex-1">
|
||
|
{{if eq $diagCount 0}}
|
||
|
<li class="py-2 px-4">
|
||
|
<p class="py-5 mt-1 max-w-2xl text-sm text-gray-500">Aucun diagnostique effectué pour le moment.</p>
|
||
|
</li>
|
||
|
{{else}}
|
||
|
{{range .ViewState.diags}}
|
||
|
{{ $diags := .ID }}
|
||
|
{{if eq .Deleted false}}
|
||
|
<li class="py-5 px-4 flex">
|
||
|
<div class="flex-1 ml-3">
|
||
|
<a href="app/diags/{{$diags}}" class="mt-1 text-sm text-gray-900">{{.Name}}</a>
|
||
|
</div>
|
||
|
<a href="/app/diags/{{$diags}}/delete" class="inline-flex"><button type="button"
|
||
|
class="w-full px-4 py-2 border border-transparent text-sm font-medium rounded-2xl shadow-sm text-white bg-co-red hover:bg-co-red focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-100 focus:ring-co-blue">Retirer</button></a>
|
||
|
</li>
|
||
|
{{end}}
|
||
|
{{if eq .Deleted true}}
|
||
|
<li class="py-5 px-4 flex">
|
||
|
<div class="flex-1 ml-3">
|
||
|
<p class="mt-1 text-sm text-gray-900">{{.Name}}</p>
|
||
|
</div>
|
||
|
<div class="flex-1 ml-3">
|
||
|
<p class="mt-1 text-sm text-gray-900">Ce diagnostique a été retiré</p>
|
||
|
</div>
|
||
|
</li>
|
||
|
{{end}}
|
||
|
{{end}}
|
||
|
{{end}}
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
{{end}}
|