-<div id="identification" class="contenu">
- <div class="gauche">
- <img src="{{ employe.url_photo }}" alt="Photo" class="bordure" />
- </div>
- <div class="gauche">
- <h1>{{ employe.civilite }} {{ employe }}</h1>
-
- {% for d in employe.dossiers_encours %}
- <p>
- {% if employe.genre.upper == 'F' %}
- {{ d.poste.nom_feminin }}
- {% else %}
- {{ d.poste.nom }}
- {% endif %}
- </p>
- <p>
- {{ d.poste.service|default_if_none:"Service inconnu" }}<br />
- {{ d.poste.implantation.nom|default_if_none:"Implantation inconnue" }}<br />
- {{ d.poste.implantation.adresse_physique_ville|default_if_none:"Ville inconnue" }}
- </p>
- {% endfor %}
- </div>
-</div>
+<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>
+
+<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>