projets
/
auf_rh_dae.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
62ca5d0ce061f31f6fec3fcac1426d00c32cb3e3
[auf_rh_dae.git]
/
project
/
rh
/
templates
/
rh
/
include
/
commentaires.html
1
{% if commentaires|length
>
0
%}
2
<h3>
Commentaires
</h3>
3
<table>
4
<thead>
5
<tr>
6
<th>
Commentaire
</th>
7
<th>
Auteur
</th>
8
</tr>
9
</thead>
10
<tbody>
11
{% for c in commentaires %}
12
<tr>
13
<td>
{{ c.texte }}
</td>
14
<td>
{{ c.owner }}
</td>
15
</tr>
16
{% endfor %}
17
</tbody>
18
</table>
19
{% endif %}
20