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

Dashboard

Top this week

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

Latest scrobbles

Today {{counts.today}} | This Week {{counts.week}} | This Month {{counts.month}} | This Year {{counts.year}} | All Time {{counts.alltime}}

{% for scrobble in object_list %} {% endfor %}
Time Track Artist Source
{{scrobble.timestamp|naturaltime}} {{scrobble.track.title}} {{scrobble.track.artist.name}} {{scrobble.source}}

Latest watched

{% for scrobble in video_scrobble_list %} {% endfor %}
Time Title Series Season & Episode Source
{{scrobble.timestamp|naturaltime}} {{scrobble.video.title}} {% if scrobble.video.tv_series %}{{scrobble.video.tv_series}}{% endif %} {% if scrobble.video.tv_series %}{{scrobble.video.season_number}}, {{scrobble.video.episode_number}}{% endif %} {{scrobble.source}}
{% endblock %}