Commit | Line | Data |
---|---|---|
34947443 AJ |
1 | {% load pagination_tags %} |
2 | {% load sorting_tags %} | |
3 | ||
4 | {% autosort chercheurs %} | |
5 | {% autopaginate chercheurs 20 %} | |
6 | ||
7 | <h4>Chercheurs</h4> | |
8 | ||
9 | <div class="contenu-wrapper"> | |
9f7c169e | 10 | <strong>{{nb_chercheurs}} chercheurs</strong> |
34947443 AJ |
11 | {% paginate %} |
12 | <table> | |
13 | <tr> | |
14 | <th>{% anchor personne__nom Nom %}</th> | |
15 | </tr> | |
16 | {% for chercheur in chercheurs %} | |
17 | <tr> | |
18 | <td><a href="{% url chercheurs.views.retrieve chercheur.id %}">{{ chercheur }}</a></td> | |
19 | </tr> | |
20 | {% endfor %} | |
21 | </table> | |
34947443 | 22 | {% paginate %} |
9f7c169e AJ |
23 | </div> |
24 |