Oslomp/stats bugfixes

This commit is contained in:
Olaf Slomp
2019-02-28 10:45:01 +01:00
committed by Gerdriaan Mulder
parent 409c5b2930
commit 3f263ae429
4 changed files with 27 additions and 22 deletions

View File

@ -26,7 +26,7 @@
<tr>
<th>#</th>
<th>User</th>
<th># Songs</th>
<th style="text-align: right;"># Songs</th>
</tr>
</thead>
<tbody>
@ -34,7 +34,8 @@
<tr>
<th>{{ forloop.counter }}</th>
<td>{{ stat.user__name }}</td>
<td>{{ stat.total }} ({% widthratio stat.total stats.total_uploads 100 %}%)</td>
<td style="text-align: right;">{{ stat.total }}</td>
<td>({% widthratio stat.total stats.total_uploads 100 %}%)</td>
</tr>
{% endfor %}
</tbody>
@ -51,7 +52,7 @@
<tr>
<th>#</th>
<th>User</th>
<th># Requests</th>
<th style="text-align: right;"># Requests</th>
</tr>
</thead>
<tbody>
@ -59,7 +60,8 @@
<tr>
<th>{{ forloop.counter }}</th>
<td>{{ stat.user__name }}</td>
<td>{{ stat.total }} ({% widthratio stat.total stats.total_requests 100 %}%)</td>
<td style="text-align: right;">{{ stat.total }}</td>
<td>({% widthratio stat.total stats.total_requests 100 %}%)</td>
</tr>
{% endfor %}
</tbody>
@ -105,7 +107,7 @@
<tr>
<th>#</th>
<th>User</th>
<th># Unique</th>
<th style="text-align: right;"># Unique</th>
</tr>
</thead>
<tbody>
@ -113,7 +115,8 @@
<tr>
<th>{{ forloop.counter }}</th>
<td>{{ stat.user__name }}</td>
<td>{{ stat.unique_requests }} ({% widthratio stat.unique_requests stat.total_requests 100 %}%)</td>
<td style="text-align: right;">{{ stat.unique_requests }}</td>
<td>({% widthratio stat.unique_requests stat.total_requests 100 %}%)</td>
</tr>
{% endfor %}
</tbody>
@ -156,7 +159,7 @@
<tr>
<th>#</th>
<th>User</th>
<th># Others</th>
<th style="text-align: right;"># Others</th>
<th># Own</th>
</tr>
</thead>
@ -165,7 +168,7 @@
<tr>
<th>{{ forloop.counter }}</th>
<td>{{ stat.name }}</td>
<td>{{ stat.total }}</td>
<td style="text-align: right;">{{ stat.total }}</td>
<td>{{ stat.own_total}}</td>
</tr>
{% endfor %}

View File

@ -41,7 +41,7 @@
<th>{{ forloop.counter }}</th>
<td>{{ stat.song__artist }}</td>
<td>{{ stat.song__title }}</td>
<td>{{ stat.total }}</td>
<td style="text-align: middle;">{{ stat.total }}</td>
</tr>
{% endfor %}
</tbody>
@ -64,7 +64,7 @@
<th>#</th>
<th>Artist</th>
<th>Title</th>
<th>Others</th>
<th style="text-align: right;">Others</th>
<th>You</th>
</tr>
</thead>
@ -74,7 +74,7 @@
<th>{{ forloop.counter }}</th>
<td>{{ stat.song__artist }}</td>
<td>{{ stat.song__title }}</td>
<td>{{ stat.total }}</td>
<td style="text-align: right;">{{ stat.total }}</td>
<td>{{ stat.user_total }}</td>
</tr>
{% endfor %}
@ -91,7 +91,7 @@
<tr>
<th>#</th>
<th>Uploader</th>
<th># Requests</th>
<th style="text-align: right;"># Requests</th>
</tr>
</thead>
<tbody>
@ -99,7 +99,8 @@
<tr>
<th>{{ forloop.counter }}</th>
<td>{{ stat.song__user__name }}</td>
<td>{{ stat.total }} ({% widthratio stat.total stats.total_requests 100 %}%)</td>
<td style="text-align: right;">{{ stat.total }}</td>
<td>({% widthratio stat.total stats.total_requests 100 %}%)</td>
</tr>
{% endfor %}
</tbody>