mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-09 18:52:23 +01:00
Show rank of users in statistics.
This commit is contained in:
@ -10,6 +10,7 @@
|
||||
<table class="table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>#</th>
|
||||
<th>User</th>
|
||||
<th># Songs</th>
|
||||
</tr>
|
||||
@ -17,6 +18,7 @@
|
||||
<tbody>
|
||||
{% for stat in upload_stats %}
|
||||
<tr>
|
||||
<th>{{ forloop.counter }}</th>
|
||||
<td>{{ stat.user__name }}</td>
|
||||
<td>{{ stat.total }}</td>
|
||||
</tr>
|
||||
@ -29,6 +31,7 @@
|
||||
<table class="table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>#</th>
|
||||
<th>User</th>
|
||||
<th># Requests</th>
|
||||
</tr>
|
||||
@ -36,6 +39,7 @@
|
||||
<tbody>
|
||||
{% for stat in request_stats %}
|
||||
<tr>
|
||||
<th>{{ forloop.counter }}</th>
|
||||
<td>{{ stat.user__name }}</td>
|
||||
<td>{{ stat.total }}</td>
|
||||
</tr>
|
||||
|
||||
Reference in New Issue
Block a user