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