{% extends 'marietje/base.html' %} {% load static %} {% block title %}Stats{% endblock %} {% block content %}
In total {{ stats.total_uploads }} songs have been uploaded. These are the {{ stats.stats_top_count }} people who have uploaded the most.
| # | User | # Songs | |
|---|---|---|---|
| {{ forloop.counter }} | {{ stat.user__name }} | {{ stat.total }} | ({% widthratio stat.total stats.total_uploads_perc 100 %}%) |
In total {{ stats.total_requests }} songs have been requested. These are the {{ stats.stats_top_count }} people who have requested the most songs.
| # | User | # Requests | |
|---|---|---|---|
| {{ forloop.counter }} | {{ stat.user__name }} | {{ stat.total }} | ({% widthratio stat.total stats.total_requests_perc 100 %}%) |
In total {{ stats.total_time_requested }} of music have been requested, with an average song length of {{ stats.total_average }}. These are the {{ stats.stats_top_count }} people with the longest total time queued.
| # | User | Duration | Average |
|---|---|---|---|
| {{ forloop.counter }} | {{ stat.user__name }} | {{ stat.duration }} | {{stat.avg_dur}} |
In total {{stats.total_unique_requests}} different songs have been requested. The {{ stats.stats_top_count }} people that have requested the largest number of different songs are shown below.
| # | User | # Unique | |
|---|---|---|---|
| {{ forloop.counter }} | {{ stat.user__name }} | {{ stat.unique_requests }} | ({% widthratio stat.unique_requests stat.total_requests 100 %}%) |
These are the {{ stats.stats_top_count }} most played songs ever.
| # | Artist | Title | # Requests |
|---|---|---|---|
| {{ forloop.counter }} | {{ stat.song__artist }} | {{ stat.song__title }} | {{ stat.total }} |
These are the {{ stats.stats_top_count }} most played artists ever.
| # | Artist | # Requests |
|---|---|---|
| {{ forloop.counter }} | {{ stat.song__artist }} | {{ stat.total }} |
These are the {{ stats.stats_top_count }} people whose songs are requested most often by other people, as shown in the left column. The right column shows how many times that person has queued their own songs.
| # | User | # Others | # Own |
|---|---|---|---|
| {{ forloop.counter }} | {{ stat.name }} | {{ stat.total }} | {{ stat.own_total}} |
These {{ stats.stats_top_count }} songs have been requested the most in the last two weeks.
| # | Artist | Title | # Requests |
|---|---|---|---|
| {{ forloop.counter }} | {{ stat.song__artist }} | {{ stat.song__title }} | {{ stat.total }} |