diff --git a/marietje/stats/templates/stats/user.html b/marietje/stats/templates/stats/user.html index 307b07f..efbd305 100644 --- a/marietje/stats/templates/stats/user.html +++ b/marietje/stats/templates/stats/user.html @@ -16,171 +16,169 @@ {% 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 %} + +
#ArtistTitle# 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 }}
+
-
-

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 %} - -
#ArtistTitle# Requests
{{ forloop.counter }}{{ stat.song__artist }}{{ stat.song__title }}{{ 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 %} + +
#ArtistTitleOthersYou
{{ forloop.counter }}{{ stat.song__artist }}{{ stat.song__title }}{{ stat.total }}{{ stat.user_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 }}
-
+
+
+

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 %} + +
#ArtistOthersYou
{{ forloop.counter }}{{ stat.song__artist }}{{ stat.total }}{{ stat.user_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 %} - -
#ArtistTitleOthersYou
{{ forloop.counter }}{{ stat.song__artist }}{{ stat.song__title }}{{ 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 %}%)
-
-

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 %} - -
#ArtistOthersYou
{{ 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 }}
-
+
+
+

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