{% extends 'marietje/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. These are the song you have requested the most.

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

These are the artists you have requested the most.

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 }} times 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

These are the people whose songs you have requested the most.

{% 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

These are the people that have requested your songs the most.

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