Commit | Line | Data |
---|---|---|
588d6b93 | 1 | {% extends "container_base.html" %} |
2 | ||
2e7bc859 | 3 | |
588d6b93 | 4 | {% block contenu %} |
f8c16b3d | 5 | <h4>Agenda</h4> |
9619910d EMS |
6 | <ul class="actions"> |
7 | {% include "savoirs/evenement_actions.html" %} | |
8 | <li><a href="/rss/agenda"><img src="/media/img/feed.png" /></a></li> | |
9 | </ul> | |
f8c16b3d | 10 | |
2e7bc859 AJ |
11 | <div class="contenu-wrapper"> |
12 | <table id="repertoire"> | |
13 | <tr> | |
14 | <th>Nom</th> | |
15 | </tr> | |
16 | {% for e in evenements %} | |
17 | <tr class="{% cycle 'odd' 'notodd' %}"> | |
50a045b7 | 18 | <td><a href="{% url savoirs.views.evenement e.uid.value %}" class="le-titre">{{ e.summary.value|truncatewords:20 }}</a></td> |
2e7bc859 AJ |
19 | </tr> |
20 | {% endfor %} | |
21 | </table> | |
22 | </div> | |
23 | ||
588d6b93 | 24 | {% endblock %} |