projets
/
auf_rh_dae.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
c2f69f863638fd3506f12309bc815a343c59437b
[auf_rh_dae.git]
/
project
/
rh
/
templates
/
rh
/
include
/
pieces.html
1
{% if pieces|length
>
0
%}
2
<h3>
Pièces
</h3>
3
<table>
4
<tr>
5
<th>
Nom
</th>
6
<th>
Lien
</th>
7
</tr>
8
{% for p in pieces %}
9
<tr>
10
<th>
{{ p }}
</th>
11
<th><a
href
=
"{{ media_url }}{{ p.fichier }}"
>
Télécharger
</a></th>
12
</tr>
13
{% endfor %}
14
</table>
15
{% endif %}