-<h2>{{ employe.nom|title }} {{employe.prenom|title }}</h2>
-<h3>Identification</h3>
-<table>
- <tr>
- <th>Nom</th>
- <td>{{ employe.nom }}</td>
- </tr>
- <tr>
- <th>Prénom</th>
- <td>{{ employe.prenom }}</td>
- </tr>
- <tr>
- <th>Nom d'affichage</th>
- <td>{{ employe.nom_affichage|default:"" }}</td>
- </tr>
- <tr>
- <th>Nationalité</th>
- <td>{{ employe.nationalite }}</td>
- </tr>
- <tr>
- <th>Date de naissance</th>
- <td>{{ employe.date_naissance }}</td>
- </tr>
- <tr>
- <th>Situation familiale</th>
- <td>{{ employe.situation_famille.nom }}</td>
- </tr>
- <tr>
- <th>Date d'entrée à l'AUF</th>
- <td>{{ employe.date_entree }}</td>
- </tr>
-</table>
+<fieldset class="module aligned">
+ <h2>Identification</h2>
+ {% include "rh/form-row.html" with label="Nom" value=employe.nom %}
+ {% include "rh/form-row.html" with label="Prénom" value=employe.prenom %}
+ {% include "rh/form-row.html" with label="Nom d'affichage" value=employe.nom_affichage|default:"" %}
+ {% include "rh/form-row.html" with label="Nationalité" value=employe.nationalite %}
+ {% include "rh/form-row.html" with label="Date de naissance" value=employe.date_naissance %}
+ {% include "rh/form-row.html" with label="Situation familiale" value=employe.situation_famille.nom %}
+ {% include "rh/form-row.html" with label="Date d'entrée à l'AUF" value=employe.date_entree %}
+</fieldset>
-<h3>Coordonnées</h3>
-<table>
- <tr>
- <th>Adresse</th>
- <td>{{ employe.adresse }}</td>
- </tr>
- <tr>
- <th>Ville</th>
- <td>{{ employe.ville }}</td>
- </tr>
- <tr>
- <th>Code postal</th>
- <td>{{ employe.code_postal }}</td>
- </tr>
- <tr>
- <th>Province</th>
- <td>{{ employe.province }}</td>
- </tr>
- <tr>
- <th>Pays</th>
- <td>{{ employe.pays }}</td>
- </tr>
- <tr>
- <th>Tél. domicile</th>
- <td>{{ employe.tel_domicile }}</td>
- </tr>
- <tr>
- <th>Tél. mobile</th>
- <td>{{ employe.tel_cellulaire }}</td>
- </tr>
-</table>
+<fieldset class="module aligned">
+ <h2>Coordonnées</h2>
+ {% include "rh/form-row.html" with label="Adresse" value=employe.adresse %}
+ {% include "rh/form-row.html" with label="Ville" value=employe.ville %}
+ {% include "rh/form-row.html" with label="Code postal" value=employe.code_postal %}
+ {% include "rh/form-row.html" with label="Province" value=employe.province %}
+ {% include "rh/form-row.html" with label="Pays" value=employe.pays %}
+ {% include "rh/form-row.html" with label="Tél. domicile" value=employe.tel_domicile %}
+ {% include "rh/form-row.html" with label="Tél. mobile" value=employe.tel_cellulaire %}
+</fieldset>