-{% if commentaires|length > 0 %}
-<h3>Commentaires</h3>
-<table>
- <thead>
- <tr>
- <th>Commentaire</th>
- <th>Auteur</th>
- </tr>
- </thead>
- <tbody>
- {% for c in commentaires %}
- <tr>
- <td>{{ c.texte }}</td>
- <td>{{ c.owner }}</td>
- </tr>
- {% endfor %}
- </tbody>
-</table>
+{% 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 %}