37 lines
1.6 KiB
HTML
37 lines
1.6 KiB
HTML
|
{{define "beneficiary_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">Dignostiques réalisées</h2>
|
||
|
</div>
|
||
|
<a href="{{.ViewState.beneficiary.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 class="border-t border-gray-200">
|
||
|
{{ $diagCount := len .ViewState.diag }}
|
||
|
<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.diag}}
|
||
|
{{if eq .Deleted false}}
|
||
|
<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>
|
||
|
</a>
|
||
|
</li>
|
||
|
{{end}}
|
||
|
{{end}}
|
||
|
{{end}}
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
{{end}}
|