+<h2 class="section">PIÈCES JOINTES</h2>
+
+{% if dossier.valide %}
+<a class="droite bouton-action" href="{% url embauche_ajouter_contrat dossier_id=dossier.id %}"
+ >Ajouter un contrat</a>
+<h3>Contrats</h3>
+
+<table>
+ <thead>
+ <tr>
+ <th>Type</th>
+ <th>Fichier</th>
+ <th></th>
+ </tr>
+ </thead>
+ <tbody>
+ {% for contrat in dossier.dae_contrats.all %}
+ <tr>
+ <td>{{ contrat.type_contrat }}</td>
+ <td><a href="{% url contrat contrat.id contrat.fichier.name|basename %}"
+ >{{ contrat.fichier.name|basename }}</a></td>
+ <td><a href="{% url contrat_supprimer contrat.id %}">Supprimer</a></td>
+ </tr>
+ {% empty %}
+ <tr>
+ <td colspan="0">Aucun contrat pour l'instant</td>
+ </tr>
+ {% endfor %}
+ </tbody>
+</table>
+{% endif %}
+
+<h3>DAE numérisée</h3>
+<table>
+ <thead>
+ <tr>
+ <th>Fichier</th>
+ {% ifhasperm 'modifier_dae_numerisee' dossier %}
+ <th></th>
+ {% endifhasperm %}
+ </tr>
+ </thead>
+ <tbody>
+ {% if dossier.dae_numerisee %}
+ <td><a href="{% url dae_numerisee dossier.id %}">Télécharger la DAE numérisée</a></td>
+ {% ifhasperm 'modifier_dae_numerisee' dossier %}
+ <td>
+ <a href="{% url dae_numerisee_supprimer dossier.id %}">Supprimer</a>
+ </td>
+ {% endifhasperm %}
+ {% else %}
+ <td>Aucune DAE numérisée pour l'instant</td>
+ {% ifhasperm 'modifier_dae_numerisee' dossier %}
+ <td>
+ <a href="{% url dae_numerisee_modifier dossier.id %}">Joindre une DAE numérisée</a>
+ </td>
+ {% endifhasperm %}
+ {% endif %}
+ </tbody>
+</table>
+
+<h2 class="section">VALIDATIONS</h2>