{% 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>
+<div>
+ <h3>Pièces</h3>
+ {% comment %}
+ <a class="noprint action-remove-block" href="#">Retirer de l'impression</a>
+ {% endcomment %}
+ <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>
+</div>
{% endif %}