-{% if pieces|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_url }}{{ p.fichier }}">Télécharger</a></th>
- </tr>
- {% endfor %}
-</table>
+{% if pieces %}
+<fieldset class="module">
+ <h2>Pièces</h2>
+ <table>
+ <tr>
+ <th>Nom</th>
+ <th>Lien</th>
+ </tr>
+ {% for p in pieces %}
+ <tr>
+ <th>{{ p }}</th>
+ <th><a href="{{ media_url }}{{ p.fichier }}">Télécharger</a></th>
+ </tr>
+ {% endfor %}
+ </table>
+</fieldset>
{% endif %}