Commit | Line | Data |
---|---|---|
ce740bb5 OL |
1 | {% if commentaires %} |
2 | <fieldset class="module aligned"> | |
3 | <h2>Commentaires</h2> | |
4 | <table> | |
5 | <thead> | |
6 | <tr> | |
7 | <th>Commentaire</th> | |
8 | <th>Auteur</th> | |
9 | <th>Date</th> | |
10 | </tr> | |
11 | </thead> | |
12 | <tbody> | |
13 | {% for c in commentaires %} | |
14 | <tr> | |
15 | <td>{{ c.texte }}</td> | |
16 | <td>{{ c.owner }}</td> | |
17 | <td>{{ c.date_creation|default:"" }}</td> | |
18 | </tr> | |
19 | {% endfor %} | |
20 | </tbody> | |
21 | </table> | |
22 | </fieldset> | |
2a36598b JPC |
23 | {% endif %} |
24 |