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