Add BookingsCreateDiag

This commit is contained in:
2024-12-16 12:38:28 +01:00
parent 34faa8c215
commit ef66fa9876
11 changed files with 218 additions and 32 deletions

View File

@@ -137,6 +137,11 @@
class="whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm"
:class="tab == 'organizations' ? 'border-co-blue text-co-blue' : 'border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300'">
Gestionnaires </a>
<a href="#" @click="tab = 'diags'"
class="whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm"
:class="tab == 'diags' ? 'border-co-blue text-co-blue' : 'border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300'">
Diagnostics </a>
</nav>
</div>
</div>
@@ -145,6 +150,7 @@
<div x-show="tab == 'documents'">{{template "beneficiary_files" .}}</div>
<div x-show="tab == 'notes'">{{template "beneficiary_notes" .}}</div>
<div x-show="tab == 'organizations'">{{template "beneficiary_organizations" .}}</div>
<div x-show="tab == 'diags'">{{template "beneficiary_diags" .}}</div>
</div>
</div>
</section>
@@ -152,9 +158,6 @@
<section aria-labelledby="timeline-title" class="lg:col-start-3 lg:col-span-1">
{{template "beneficiary_events" .}}
<div class="mt-6">
{{template "beneficiary_diags" .}}
</div>
</section>
</div>
</main>