</tr>
{% endfor %}
</table>
+
+{% if piecse|length > 0 %}
+<h3>Pièces</h3>
+<table>
+ <tr>
+ <th>Nom</th>
+ <th>Lien</th>
+ </tr>
+ {% for p in pieces %}
+ <tr>
+ <th>{{ p }}</th>
+ <th><a href="{{ media }}{{ p.fichier }}">Télécharger</a></th>
+ </tr>
+ {% endfor %}
+</table>
+{% endif %}