{% if user.is_authenticated %}
Today {{counts.today}} | This Week {{counts.week}} | This Month {{counts.month}} | This Year {{counts.year}} | All Time {{counts.alltime}}
-
-
-
-
Top artists this week
# |
Artist |
{% for artist in top_weekly_artists %}
{{artist.num_scrobbles}} |
{{artist.name}} |
{% endfor %}
Top tracks this week
# |
Track |
Artist |
{% for track in top_weekly_tracks %}
{{track.num_scrobbles}} |
{{track.title}} |
{{track.artist.name}} |
{% endfor %}
Top tracks this month
# |
Track |
Artist |
{% for track in top_monthly_tracks %}
{{track.num_scrobbles}} |
{{track.title}} |
{{track.artist.name}} |
{% endfor %}
Top artists this month
# |
Artist |
{% for artist in top_monthly_artists %}
{{artist.num_scrobbles}} |
{{artist.name}} |
{% endfor %}
-
-
-
-
Latest listened
Time |
Track |
Artist |
{% for scrobble in object_list %}
{{scrobble.timestamp|naturaltime}} |
{{scrobble.track.title}} |
{{scrobble.track.artist.name}} |
{% endfor %}
Latest watched
Time |
Title |
Series |
{% for scrobble in video_scrobble_list %}
{{scrobble.timestamp|naturaltime}} |
{% if scrobble.video.tv_series %}S{{scrobble.video.season_number}}E{{scrobble.video.episode_number}} -{% endif %} {{scrobble.video.title}} |
{% if scrobble.video.tv_series %}{{scrobble.video.tv_series}}{% endif %} |
{% endfor %}
Latest Sports
Date |
Title |
League |
{% for scrobble in sport_scrobble_list %}
{{scrobble.timestamp|naturaltime}} |
{{scrobble.sport_event.title}} |
{{scrobble.sport_event.league.abbreviation}} |
{% endfor %}
Latest Podcasted
Date |
Title |
Podcast |
{% for scrobble in podcast_scrobble_list %}
{{scrobble.timestamp|naturaltime}} |
{{scrobble.podcast_episode.title}} |
{{scrobble.podcast_episode.podcast}} |
{% endfor %}
{% else %}
{% endif %}
{% endblock %}