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 }}:
+
+
+
+
+ | # |
+ Artist |
+ Title |
+ # Requests |
+
+
+
+ {% for stat in stats.most_played_songs %}
+
+ | {{ forloop.counter }} |
+ {{ stat.song__artist }} |
+ {{ stat.song__title }} |
+ {{ stat.total }} |
+
+ {% endfor %}
+
+
+
+
+
Most played Artists
+
Top {{ stats.stats_top_count }}:
+
+
+
+
+ | # |
+ Artist |
+ # Requests |
+
+
+
+ {% for stat in stats.most_played_artists %}
+
+ | {{ forloop.counter }} |
+ {{ stat.song__artist }} |
+ {{ stat.total }} |
+
+ {% endfor %}
+
+
+
-
-
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 }}:
-
-
-
-
- | # |
- Artist |
- Title |
- # Requests |
-
-
-
- {% for stat in stats.most_played_songs %}
-
- | {{ forloop.counter }} |
- {{ stat.song__artist }} |
- {{ stat.song__title }} |
- {{ stat.total }} |
-
- {% endfor %}
-
-
-
+
+
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 }}:
+
+
+
+
+ | # |
+ Artist |
+ Title |
+ Others |
+ You |
+
+
+
+ {% for stat in stats.most_played_uploads %}
+
+ | {{ forloop.counter }} |
+ {{ stat.song__artist }} |
+ {{ stat.song__title }} |
+ {{ stat.total }} |
+ {{ stat.user_total }} |
+
+ {% endfor %}
+
+
-
-
Most played Artists
-
Top {{ stats.stats_top_count }}:
-
-
-
-
- | # |
- Artist |
- # Requests |
-
-
-
- {% for stat in stats.most_played_artists %}
-
- | {{ forloop.counter }} |
- {{ stat.song__artist }} |
- {{ stat.total }} |
-
- {% endfor %}
-
-
-
+
+
+
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 }}:
+
+
+
+
+ | # |
+ Artist |
+ Others |
+ You |
+
+
+
+ {% for stat in stats.most_played_uploaded_artists %}
+
+ | {{ forloop.counter }} |
+ {{ stat.song__artist }} |
+ {{ stat.total }} |
+ {{ stat.user_total }} |
+
+ {% endfor %}
+
+
-
-
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 }}:
-
-
-
-
- | # |
- Artist |
- Title |
- Others |
- You |
-
-
-
- {% for stat in stats.most_played_uploads %}
-
- | {{ forloop.counter }} |
- {{ stat.song__artist }} |
- {{ stat.song__title }} |
- {{ stat.total }} |
- {{ stat.user_total }} |
-
- {% endfor %}
-
-
-
+
+
+
Most played uploaders
+
The people whose songs you have queued the most are:
+
+
+
+
+ | # |
+ Uploader |
+ # Requests |
+
+
+
+ {% for stat in stats.most_played_uploaders %}
+
+ | {{ forloop.counter }} |
+ {{ stat.song__user__name }} |
+ {{ stat.total }} |
+ ({% widthratio stat.total stats.total_requests 100 %}%) |
+
+ {% endfor %}
+
+
-
-
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 }}:
-
-
-
-
- | # |
- Artist |
- Others |
- You |
-
-
-
- {% for stat in stats.most_played_uploaded_artists %}
-
- | {{ forloop.counter }} |
- {{ stat.song__artist }} |
- {{ stat.total }} |
- {{ stat.user_total }} |
-
- {% endfor %}
-
-
-
-
-
-
Most played uploaders
-
The people whose songs you have queued the most are:
-
-
-
-
- | # |
- Uploader |
- # Requests |
-
-
-
- {% for stat in stats.most_played_uploaders %}
-
- | {{ forloop.counter }} |
- {{ stat.song__user__name }} |
- {{ stat.total }} |
- ({% widthratio stat.total stats.total_requests 100 %}%) |
-
- {% endfor %}
-
-
-
-
-
-
Biggest fans
-
The people that queued your songs the most are:
-
-
-
-
- | # |
- User |
- # Requests |
-
-
-
- {% for stat in stats.biggest_fans %}
-
- | {{ forloop.counter }} |
- {{ stat.user__name }} |
- {{ stat.total }} |
-
- {% endfor %}
-
-
-
+
+
+
Biggest fans
+
The people that queued your songs the most are:
+
+
+
+
+ | # |
+ User |
+ # Requests |
+
+
+
+ {% for stat in stats.biggest_fans %}
+
+ | {{ forloop.counter }} |
+ {{ stat.user__name }} |
+ {{ stat.total }} |
+
+ {% endfor %}
+
+
{% endif %}