{% extends "base.html" %} {% load humanize %} {% block content %}

Dashboard

{% if user.is_authenticated %}
{% if user.profile.lastfm_username %}
{% endif %}
{% endif %}
{% 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

{% for artist in top_weekly_artists %} {% endfor %}
# Artist
{{artist.num_scrobbles}} {{artist.name}}

Top tracks this week

{% for track in top_weekly_tracks %} {% endfor %}
# Track Artist
{{track.num_scrobbles}} {{track.title}} {{track.artist.name}}

Top tracks this month

{% for track in top_monthly_tracks %} {% endfor %}
# Track Artist
{{track.num_scrobbles}} {{track.title}} {{track.artist.name}}

Top artists this month

{% for artist in top_monthly_artists %} {% endfor %}
# Artist
{{artist.num_scrobbles}} {{artist.name}}

Latest listened

{% for scrobble in object_list %} {% if scrobble.track.album.cover_image %} {% else %} {% endif %} {% endfor %}
Time Album Track Artist
{{scrobble.timestamp|naturaltime}}{{scrobble.track.album.name}}{{scrobble.track.title}} {{scrobble.track.artist.name}}

Latest watched

{% for scrobble in video_scrobble_list %} {% endfor %}
Time Title Series
{{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 %}

Latest Sports

{% for scrobble in sport_scrobble_list %} {% endfor %}
Date Title League
{{scrobble.timestamp|naturaltime}} {{scrobble.sport_event.title}} {{scrobble.sport_event.league.abbreviation}}

Latest Podcasted

{% for scrobble in podcast_scrobble_list %} {% endfor %}
Date Title Podcast
{{scrobble.timestamp|naturaltime}} {{scrobble.podcast_episode.title}} {{scrobble.podcast_episode.podcast}}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}