Commit | Line | Data |
---|---|---|
588d6b93 | 1 | {% extends "container_base.html" %} |
2 | ||
2e7bc859 | 3 | |
588d6b93 | 4 | {% block contenu %} |
f8c16b3d | 5 | <h4>Agenda</h4> |
6 | ||
2e7bc859 AJ |
7 | <div class="contenu-wrapper"> |
8 | <table id="repertoire"> | |
9 | <tr> | |
10 | <th>Nom</th> | |
11 | </tr> | |
12 | {% for e in evenements %} | |
13 | <tr class="{% cycle 'odd' 'notodd' %}"> | |
14 | <td>{{ e.summary.value|truncatewords:12 }}</td> | |
15 | </tr> | |
16 | {% endfor %} | |
17 | </table> | |
18 | </div> | |
19 | ||
588d6b93 | 20 | {% endblock %} |