Commit | Line | Data |
---|---|---|
c4312cce PP |
1 | {% extends "admin/base_site.html" %} |
2 | ||
3 | {% block breadcrumbs %}{% endblock %} | |
4 | ||
5 | {% block content %} | |
6 | <h1>Mise à jour des fiches chercheurs</h1> | |
7 | ||
8 | <h2>Chercheurs connectés depuis un an (détail par mois)</h2> | |
9 | ||
10 | <table> | |
11 | {% for chercheur in chercheurs %} | |
12 | <tr> | |
13 | <td>{{ chercheur.year }}-{{ chercheur.month|stringformat:"02d" }}</td> | |
14 | <td>{{ chercheur.total }}</td> | |
15 | </tr> | |
16 | {% endfor %} | |
17 | </table> | |
18 | ||
19 | {% endblock %} |