Commit | Line | Data |
---|---|---|
588d6b93 | 1 | {% extends "container_base.html" %} |
2 | ||
add2851c | 3 | {% load pagination_tags %} |
add2851c | 4 | |
588d6b93 | 5 | {% block contenu %} |
c9cbc784 | 6 | {% autopaginate actualites 10 %} |
6e9fc661 | 7 | |
2af3293d EMS |
8 | <ul class="actions"> |
9 | <li><a href="{% url aide %}#actualites">Aide</a></li> | |
10 | </ul> | |
11 | ||
f09bc1c6 | 12 | {{ entete|safe }} |
f8c16b3d | 13 | |
d57ca08f | 14 | <h2>Rechercher</h2> |
6e9fc661 | 15 | |
8baa2a56 | 16 | <form action="" method="get"> |
c9cbc784 | 17 | <table> |
428ae53e PP |
18 | {% with search_form as form %} |
19 | {% include "render_search_form.html" %} | |
20 | {% endwith %} | |
6e9fc661 | 21 | <tr><th></th><td><input type="submit" value="Rechercher" /></td></tr> |
c9cbc784 | 22 | </table> |
6e9fc661 | 23 | </form> |
24 | ||
cf4091c8 | 25 | <h2>Résultats</h2> |
fdcf5874 EMS |
26 | <div class="sous-titre"> |
27 | {{ nb_resultats }} actualités correspondant à votre recherche | |
7ed3ee8f | 28 | (<a href="{% url rss_actualites %}?{{ request.META.QUERY_STRING }}">Fil RSS</a>) |
fdcf5874 EMS |
29 | {% if user.is_authenticated %} |
30 | (<a href="{% url sauvegarder_recherche "actualites" %}?{{ request.META.QUERY_STRING }}">Sauvegarder cette recherche</a>) | |
31 | {% endif %} | |
32 | </div> | |
6e9fc661 | 33 | |
cf4091c8 | 34 | <div class="pagination">{% paginate %}</div> |
8baa2a56 EMS |
35 | {% for actualite in actualites %} |
36 | {% include "savoirs/actualite_resultat.html" %} | |
37 | {% endfor %} | |
cf4091c8 | 38 | <div class="pagination">{% paginate %}</div> |
588d6b93 | 39 | {% endblock %} |