{% extends 'base.html' %} {% load static %} {% load tz %} {% block title %}User Stats{% endblock %} {% block content %}
You have requested {{ stats.unique_requests }} different songs a total of {{ stats.total_requests }} times. This means {% widthratio stats.unique_requests stats.total_requests 100 %}% of your requests have been unique.
| # | Artist | Title | # Requests |
|---|---|---|---|
| {{ forloop.counter }} | {{ stat.song__artist }} | {{ stat.song__title }} | {{ stat.total }} |
| # | Artist | # Requests |
|---|---|---|
| {{ forloop.counter }} | {{ stat.song__artist }} | {{ stat.total }} |
You have uploaded a total of {{stats.total_uploads }} songs. The left column shows how many times these have been requested by other people. The right column shows how many times you requested your own songs. In total your songs have been queued {{stats.total_played_uploads }} times by others and {{stats.total_played_user_uploads }} by yourself.
| # | Artist | Title | Others | You |
|---|---|---|---|---|
| {{ forloop.counter }} | {{ stat.song__artist }} | {{ stat.song__title }} | {{ stat.total }} | {{ stat.user_total }} |
The left column shows how many times songs from artists uploaded by you have been requested by other people. The right column shows how many times you requested those songs.
| # | Artist | Others | You |
|---|---|---|---|
| {{ forloop.counter }} | {{ stat.song__artist }} | {{ stat.total }} | {{ stat.user_total }} |
The people whose songs you have queued the most are:
| # | Uploader | # Requests | |
|---|---|---|---|
| {{ forloop.counter }} | {{ stat.song__user__name }} | {{ stat.total }} | ({% widthratio stat.total stats.total_requests 100 %}%) |
The people that queued your songs the most are:
| # | User | # Requests |
|---|---|---|
| {{ forloop.counter }} | {{ stat.user__name }} | {{ stat.total }} |