Commit | Line | Data |
---|---|---|
588d6b93 | 1 | {% extends "container_base.html" %} |
4101cfc0 | 2 | {% load pagination_tags %} |
2e7bc859 | 3 | |
588d6b93 | 4 | {% block contenu %} |
4101cfc0 | 5 | {% autopaginate evenements 10 %} |
9619910d | 6 | <ul class="actions"> |
2af3293d | 7 | <li><a href="{% url aide %}#agenda">Aide</a></li> |
0b5b6fe0 | 8 | {% include "savoirs/evenement_actions.html" %} |
9619910d | 9 | </ul> |
f8c16b3d | 10 | |
f09bc1c6 | 11 | {{ entete|safe }} |
0b5b6fe0 | 12 | |
d57ca08f | 13 | <h2>Rechercher</h2> |
cf4091c8 EMS |
14 | |
15 | <form action="" method="get"> | |
4101cfc0 | 16 | <table> |
428ae53e PP |
17 | {% with search_form as form %} |
18 | {% include "render_search_form.html" %} | |
19 | {% endwith %} | |
832f8a9d | 20 | <tr><th></th><td><input type="submit" name="action" value="Rechercher" /></td></tr> |
4101cfc0 | 21 | </table> |
cf4091c8 | 22 | </form> |
0b5b6fe0 | 23 | |
cf4091c8 | 24 | <h2>Résultats</h2> |
fdcf5874 EMS |
25 | <div class="sous-titre"> |
26 | {{ nb_resultats }} évènements correspondant à votre recherche | |
7ed3ee8f | 27 | (<a href="{% url rss_agenda %}?{{ request.META.QUERY_STRING }}">Fil RSS</a>) |
fdcf5874 EMS |
28 | {% if user.is_authenticated %} |
29 | (<a href="{% url sauvegarder_recherche "evenements" %}?{{ request.META.QUERY_STRING }}">Sauvegarder cette recherche</a>) | |
30 | {% endif %} | |
3ea74990 PP |
31 | <p> |
32 | {% if ordre != 'soumission' %} | |
33 | <a href="{% url savoirs.views.evenement_index %}?sort=soumission"> | |
34 | {% endif %} | |
35 | Trier par ordre de soumission | |
36 | {% if ordre != 'soumission' %} | |
37 | </a> | |
38 | {% endif %} | |
39 | / | |
40 | {% if ordre != 'chronologique' %} | |
41 | <a href="{% url savoirs.views.evenement_index %}?sort=chronologique"> | |
42 | {% endif %} | |
43 | Trier par ordre chronologique | |
44 | </p> | |
45 | {% if ordre != 'chronologique' %} | |
46 | </a> | |
47 | {% endif %} | |
fdcf5874 | 48 | </div> |
0b5b6fe0 | 49 | |
cf4091c8 | 50 | <div class="pagination">{% paginate %}</div> |
8baa2a56 EMS |
51 | {% for evenement in evenements %} |
52 | {% include "savoirs/evenement_resultat.html" %} | |
53 | {% endfor %} | |
cf4091c8 | 54 | <div class="pagination">{% paginate %}</div> |
588d6b93 | 55 | {% endblock %} |