-<h2>Dossier</h2>
+<h2>Dossier {{ dossier }}</h2>
+
+<h3>Implantation</h3>
+{{ dossier.poste.implantation }}
<h3>Durée et régime</h3>
<table>
{% endif %}
</table>
+
<h3>Rémunérations</h3>
<table>
<tr>
</tr>
{% endfor %}
</table>
+
+{% include "rh/include/pieces.html" %}
+
+<h3>Contrats</h3>
+<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>