1 {% load pagination_tags %}
2 {% load sorting_tags %}
4 {% autosort chercheurs %}
5 {% autopaginate chercheurs
20 %}
7 <h4>Répertoire des chercheurs
</h4>
9 {% include
"chercheurs/actions.html" %}
12 <div class=
"contenu-wrapper">
14 <form method=
"get" action=
"">
15 <table id=
"repertoire_recherche">
16 {{repertoire_form.as_table}}
18 <td colspan=
"2" class=
"Lib">
19 <input type=
"submit" class=
"bouton" value=
"Rechercher" />
26 <p><strong>{{nb_chercheurs}} chercheurs correspondant à votre recherche :
</strong></p>
27 <div class=
"centre">{% paginate %}
</div>
28 <table id=
"repertoire">
30 <th>{% anchor personne__nom Nom %}
</th>
31 <th>{% anchor etablissement__nom Établissement %}
</th>
32 <th>{% anchor etablissement__pays Localisation %}
</th>
34 {% for chercheur in chercheurs %}
35 <tr class=
"{% cycle 'odd' 'notodd' %}">
36 <td><a href=
"{% url chercheurs.views.retrieve chercheur.id %}">{{ chercheur }}
</a></td>
37 <td>{% firstof chercheur.etablissement chercheur.etablissement_autre_nom %}
</td>
38 <td>{% firstof chercheur.etablissement.pays chercheur.etablissement_autre_pays %}
</td>
42 <div class=
"centre">{% paginate %}
</div>