Skip to content

Commit

Permalink
user vehicules: adapt to new dsfr
Browse files Browse the repository at this point in the history
  • Loading branch information
brmzkw committed Jul 18, 2024
1 parent ccc7d29 commit 0c997af
Showing 1 changed file with 36 additions and 28 deletions.
64 changes: 36 additions & 28 deletions mesads/templates/webpack/pages/vehicules_relais/user_vehicule.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,34 +36,39 @@

<h1>Informations du taxi relais n°{{ vehicule.numero }}</h1>

<div class="fr-grid-row">
<div class="fr-col-12">
<div class="fr-table fr-table--bordered">
<table>
<caption>ℹ️ Informations sur le propriétaire du véhicule</caption>
<tr>
<th>Nom</th>
<td>{{ vehicule.proprietaire.nom }}</td>
</tr>
<tr>
<th>SIRET</th>
<td>{{ vehicule.proprietaire.siret|default:"-" }}</td>
</tr>
<tr>
<th>Tél.</th>
<td>{{ vehicule.proprietaire.telephone|default:"-" }}</td>
</tr>
<tr>
<th>Email</th>
<td>{{ vehicule.proprietaire.email|default:"-" }}</td>
</tr>
</table>
<div class="fr-table fr-table--lg" id="table-proprietaire">
<div class="fr-table__wrapper">
<div class="fr-table__container">
<div class="fr-table__content">
<table id="table-proprietaire">
<caption>ℹ️ Informations sur le propriétaire du véhicule</caption>
<tr>
<th>Nom</th>
<td>{{ vehicule.proprietaire.nom }}</td>
</tr>
<tr>
<th>SIRET</th>
<td>{{ vehicule.proprietaire.siret|default:"-" }}</td>
</tr>
<tr>
<th>Tél.</th>
<td>{{ vehicule.proprietaire.telephone|default:"-" }}</td>
</tr>
<tr>
<th>Email</th>
<td>{{ vehicule.proprietaire.email|default:"-" }}</td>
</tr>
</table>
</div>
</div>
</div>
</div>

<div class="fr-col-12">
<div class="fr-table fr-table--bordered">
<table>
<div class="fr-table fr-table--lg" id="table-localisation-vehicule">
<div class="fr-table__wrapper">
<div class="fr-table__container">
<div class="fr-table__content">
<table id="table-localisation-vehicule">
<caption>🔎 Localisation du véhicule</caption>
<tr>
<th>Ville</th>
Expand All @@ -78,10 +83,13 @@ <h1>Informations du taxi relais n°{{ vehicule.numero }}</h1>
</table>
</div>
</div>
</div>

<div class="fr-col-12">
<div class="fr-table fr-table--bordered">
<table>
<div class="fr-col-12 fr-table fr-table--lg" id="table-caracteristiques-vehicule">
<div class="fr-table__wrapper">
<div class="fr-table__container">
<div class="fr-table__content">
<table id="table-caracteristiques-vehicule">
<caption>🚖 Caractéristiques du véhicule</caption>
<tr>
<th>Numéro du taxi relais</th>
Expand Down

0 comments on commit 0c997af

Please sign in to comment.