many updates

This commit is contained in:
Arnaud Delcasse
2025-09-25 08:13:43 +02:00
parent d3e534fa72
commit 9280f36a62
14 changed files with 512 additions and 54 deletions

View File

@@ -128,7 +128,9 @@
<option value="events">Dispositifs</option> -->
<option value="documents">Documents</option>
<option value="wallet">Compte mobilité</option>
<option value="history">Historique</option>
</select>
</div>
@@ -145,7 +147,12 @@
class="whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm"
:class="tab == 'documents' ? 'border-co-blue text-co-blue' : 'border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300'">
Documents </a>
<a href="#" @click="tab = 'wallet'"
class="whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm"
:class="tab == 'wallet' ? 'border-co-blue text-co-blue' : 'border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300'">
Compte mobilité </a>
<a href="#" @click="tab = 'history'"
class="whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm"
:class="tab == 'history' ? 'border-co-blue text-co-blue' : 'border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300'">
@@ -157,6 +164,7 @@
</div>
<div x-show="tab == 'documents'">{{template "driver_files" .}}</div>
<div x-show="tab == 'wallet'">{{template "driver_wallet" .}}</div>
<div x-show="tab == 'history'">{{template "driver_history" .}}</div>
</div>