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 %}
|