Commit | Line | Data |
---|---|---|
2a36598b | 1 | {% if commentaires|length > 0 %} |
02e69aa2 | 2 | <div> |
02e69aa2 JPC |
3 | {% comment %} |
4 | <a class="noprint action-remove-block" href="#">Retirer de l'impression</a> | |
5 | {% endcomment %} | |
6 | <table> | |
7 | <thead> | |
8 | <tr> | |
9 | <th>Commentaire</th> | |
10 | <th>Auteur</th> | |
11 | <th>Date</th> | |
12 | </tr> | |
13 | </thead> | |
14 | <tbody> | |
15 | {% for c in commentaires %} | |
16 | <tr> | |
17 | <td>{{ c.texte }}</td> | |
18 | <td>{{ c.owner }}</td> | |
19 | <td>{{ c.date_creation|default:"" }}</td> | |
20 | </tr> | |
21 | {% endfor %} | |
22 | </tbody> | |
23 | </table> | |
24 | </div> | |
2a36598b JPC |
25 | {% endif %} |
26 |