-{% if commentaires|length > 0 %}
-<div>
- {% comment %}
- <a class="noprint action-remove-block" href="#">Retirer de l'impression</a>
- {% endcomment %}
- <table>
- <thead>
- <tr>
- <th>Commentaire</th>
- <th>Auteur</th>
- <th>Date</th>
- </tr>
- </thead>
- <tbody>
- {% for c in commentaires %}
- <tr>
- <td>{{ c.texte }}</td>
- <td>{{ c.owner }}</td>
- <td>{{ c.date_creation|default:"" }}</td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
-</div>
+{% if commentaires %}
+<fieldset class="module aligned">
+ <h2>Commentaires</h2>
+ <table>
+ <thead>
+ <tr>
+ <th>Commentaire</th>
+ <th>Auteur</th>
+ <th>Date</th>
+ </tr>
+ </thead>
+ <tbody>
+ {% for c in commentaires %}
+ <tr>
+ <td>{{ c.texte }}</td>
+ <td>{{ c.owner }}</td>
+ <td>{{ c.date_creation|default:"" }}</td>
+ </tr>
+ {% endfor %}
+ </tbody>
+ </table>
+</fieldset>
{% endif %}