{% extends 'base.html' %} {% load static %} {% load tz %} {% block title %}User Stats{% endblock %} {% block content %}

User Statistics

{% if not stats %}
Stats unavailable :(
{% else %} {% if current_age_text %}
{{ current_age_text }}
{% endif %}

Most played songs

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.

Top {{ stats.stats_top_count }}:

{% for stat in stats.most_played_songs %} {% endfor %}
# Artist Title # Requests
{{ forloop.counter }} {{ stat.song__artist }} {{ stat.song__title }} {{ stat.total }}

Most played Artists

Top {{ stats.stats_top_count }}:

{% for stat in stats.most_played_artists %} {% endfor %}
# Artist # Requests
{{ forloop.counter }} {{ stat.song__artist }} {{ stat.total }}

Uploads requested

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.

Top {{ stats.stats_top_count }}:

{% for stat in stats.most_played_uploads %} {% endfor %}
# Artist Title Others You
{{ forloop.counter }} {{ stat.song__artist }} {{ stat.song__title }} {{ stat.total }} {{ stat.user_total }}

Upload artists requested

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.

Top {{ stats.stats_top_count }}:

{% for stat in stats.most_played_uploaded_artists %} {% endfor %}
# Artist Others You
{{ forloop.counter }} {{ stat.song__artist }} {{ stat.total }} {{ stat.user_total }}

Most played uploaders

The people whose songs you have queued the most are:

{% for stat in stats.most_played_uploaders %} {% endfor %}
# Uploader # Requests
{{ forloop.counter }} {{ stat.song__user__name }} {{ stat.total }} ({% widthratio stat.total stats.total_requests 100 %}%)

Biggest fans

The people that queued your songs the most are:

{% for stat in stats.biggest_fans %} {% endfor %}
# User # Requests
{{ forloop.counter }} {{ stat.user__name }} {{ stat.total }}
{% endif %}
{% endblock %}