Commit | Line | Data |
---|---|---|
0dcfc806 JPC |
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> | |
abf91905 | 11 | <th><a href="{{ media_url }}{{ p.fichier }}">Télécharger</a></th> |
0dcfc806 JPC |
12 | </tr> |
13 | {% endfor %} | |
14 | </table> | |
15 | {% endif %} |