1 {% extends
"container_base.html" %}
2 {% load pagination_tags %}
7 {% autopaginate chercheurs
20 %}
10 <li><a href=
"{% url aide %}#repertoire">Aide
</a></li>
11 {% include
"chercheurs/actions.html" %}
18 <form method=
"get" action=
"">
20 {% with search_form as form %}
21 {% include
"render_search_form.html" %}
23 <tr><th></th><td><input type=
"submit" class=
"bouton" value=
"Rechercher" /></td></tr>
28 <div class=
"sous-titre">
29 {{ nb_chercheurs }} chercheurs correspondant à votre recherche
30 (
<a href=
"{% url rss_chercheurs %}?{{ request.META.QUERY_STRING }}">Fil RSS
</a>)
31 {% if user.is_authenticated %}
32 (
<a href=
"{% url sauvegarder_recherche "chercheurs
" %}?{{ request.META.QUERY_STRING }}">Sauvegarder cette recherche
</a>)
36 <div class=
"pagination">{% paginate %}
</div>
37 <table id=
"repertoire">
39 <th>{% sort_link
"nom" "Nom" %}
</th>
40 <th>{% sort_link
"etablissement" "Établissement" %}
</th>
41 <th>{% sort_link
"pays" "Pays" %}
</th>
43 {% for chercheur in chercheurs %}
44 <tr class=
"{% cycle 'odd' 'notodd' %}">
45 <td><a href=
"{% url chercheurs.views.retrieve id=chercheur.id %}">{{ chercheur }}
</a></td>
46 <td>{% firstof chercheur.etablissement.nom chercheur.etablissement_autre_nom %}
</td>
47 <td>{% firstof chercheur.etablissement.pays.nom chercheur.etablissement_autre_pays.nom %}
</td>
51 <div class=
"pagination">{% paginate %}
</div>