8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2025-01-28 02:54:20 +00:00
re2o/logs/templates/logs/aff_stats_users.html

22 lines
598 B
HTML
Raw Normal View History

2016-11-01 04:03:58 +01:00
{% for key_dict, stats_dict in stats_list.items %}
{% for key, stats in stats_dict.items %}
2016-11-01 03:11:32 +01:00
<table class="table table-striped">
2016-11-01 04:03:58 +01:00
<h4>Statistiques par {{ key_dict }} de {{ key }}</h4>
2016-11-01 03:11:32 +01:00
<thead>
<tr>
2016-11-01 04:03:58 +01:00
<th>{{ key_dict }}</th>
<th>Nombre de {{ key }} par {{ key_dict }}</th>
2016-11-01 03:11:32 +01:00
<th>Rang</th>
</tr>
</thead>
{% for stat in stats %}
<tr>
2016-11-01 12:00:22 +01:00
<td>{{ stat|truncatechars:25 }}</td>
2016-11-01 03:11:32 +01:00
<td>{{ stat.num }}</td>
<td>{{ forloop.counter }}</td>
</tr>
{% endfor %}
</table>
{% endfor %}
2016-11-01 04:03:58 +01:00
{% endfor %}