1 {% load pagination_tags %}
2 {% load sorting_tags %}
4 {% autosort chercheurs %}
5 {% autopaginate chercheurs
20 %}
9 <div class=
"contenu-wrapper">
10 <strong>{{nb_chercheurs}} chercheurs
</strong>
14 <th>{% anchor personne__nom Nom %}
</th>
15 <th>{% anchor etablissement__nom Établissement %}
</th>
16 <th>{% anchor pays__nom Localisation %}
</th>
18 {% for chercheur in chercheurs %}
20 <td><a href=
"{% url chercheurs.views.retrieve chercheur.id %}">{{ chercheur }}
</a></td>
21 <td>{{ chercheur.etablissement }}
</td>
22 <td>{{ chercheur.pays }}
</td>