Extra statistic: biggest fans

This commit is contained in:
Olaf Slomp
2019-10-23 20:13:12 +02:00
parent 48dd3bd0df
commit a864e8f535
2 changed files with 35 additions and 1 deletions

View File

@ -107,7 +107,32 @@
</table>
</div>
</div>
<div class="row">
<div class="col-md-6">
<h2>Biggest fans</h2>
<p> The people that queued your songs the most are:</p>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>User</th>
<th style="text-align: right;"># Requests</th>
</tr>
</thead>
<tbody>
{% for stat in stats.biggest_fans %}
<tr>
<th>{{ forloop.counter }}</th>
<td>{{ stat.user__name }}</td>
<td style="text-align: right;">{{ stat.total }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
{% endif %}
</div>
{% endblock %}
{% endblock %}