projets
/
auf_rh_dae.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
08f10d5323efa9fecfc85cdaa86d9f8ae59da404
[auf_rh_dae.git]
/
project
/
rh
/
templates
/
rh
/
include
/
commentaires.html
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>
23
{% endif %}
24