Commit | Line | Data |
---|---|---|
ce740bb5 | 1 | {% if pieces %} |
c8cb18e3 OL |
2 | <fieldset class="module"> |
3 | <h2>Pièces</h2> | |
02e69aa2 JPC |
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> | |
c8cb18e3 | 16 | </fieldset> |
0dcfc806 | 17 | {% endif %} |