-<tr{% if d.archive %} class="archive"{% endif %}>
- <td class="nombre">{{ d.id }}</td>
- <td><a href ="">{{ d.poste.nom }}</a></td>
- <td>{{ d.date_debut }}</td>
- <td>{{ d.date_fin|default_if_none:"" }}</td>
- <td></td>
- <td></td>
- <td></td>
-</tr>
+<fieldset class="module aligned">
+ <h2>Annuaire</h2>
+ {% include "rh/form-row.html" with label="Région" value=dossier.poste.implantation.region %}
+ {% include "rh/form-row.html" with label="Implantation" value=dossier.poste.implantation %}
+</fieldset>
+
+<fieldset class="module aligned">
+ <h2>Informations générales</h2>
+ {% include "rh/form-row.html" with label="Date début d'occupation" value=dossier.date_debut %}
+ {% include "rh/form-row.html" with label="Date fin d'occupation" value=dossier.date_fin %}
+ {% include "rh/form-row.html" with label="Régime de travail (% du temps complet)" value=dossier.regime_travail %}
+ {% include "rh/form-row.html" with label="Régime de travail (Nb. heures par semaine)" value=dossier.regime_travail_nb_heure_semaine %}
+ {% include "rh/form-row.html" with label="Statut" value=dossier.statut %}
+ {% include "rh/form-row.html" with label="Organisme BSTG" value=dossier.organisme_bstg %}
+ {% include "rh/form-row.html" with label="Statut de résidence" value=dossier.statut_residence %}
+ {% if dossier.remplacement %}
+ {% include "rh/form-row.html" with label="Remplacement" value=dossier.remplacement_de %}
+ {% endif %}
+</fieldset>
+
+<fieldset class="module aligned page-break">
+ <h2>Rémunération en cours</h2>
+ <table>
+ {% include "dae/embauche-remun-consulter.html" %}
+ </table>
+</fieldset>
+
+{% include "rh/include/pieces.html" %}
+
+{% if contrats %}
+<fieldset class="module aligned">
+ <h2>Contrats</h2>
+ <table>
+ <tr>
+ <th>Type</th>
+ <th>Date début</th>
+ <th>Date fin</th>
+ <th>Fichier</th>
+ </tr>
+ {% for c in contrats %}
+ <tr>
+ <td>{{ c.type_contrat }}</td>
+ <td>{{ c.date_debut }}</td>
+ <td>{{ c.date_fin }}</td>
+ <td>{% if c.fichier %}
+ <a href="{{ media }}{{ c.fichier }}">Télécharger</a>
+ {% endif %}
+ </td>
+ </tr>
+ {% endfor %}
+ </table>
+</fieldset>
+{% endif %}
+
+<fieldset class="module aligned">
+ <h2>Historique de rémunération</h2>
+{% include "rh/include/remunerations.html" with remunerations=dossier.remunerations %}
+</fieldset>
+
+{% include "rh/include/commentaires.html" %}