{% extends "base.html" %} {% load humanize %} {% load static %} {% load naturalduration %} {% block head_extra %} {% endblock %} {% block content %}

Dashboard

{% if user.is_authenticated %}
{% if user.profile.lastfm_username and not user.profile.lastfm_auto_import %}
{% endif %}
{% endif %}
{% if not user.is_authenticated %}

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

{% endif %}
{% if user.is_authenticated %}
{% include "scrobbles/_quick_resume.html" %}

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

Latest Sports

{% for scrobble in sport_scrobble_list %} {% endfor %}
Date Title Round League
{{scrobble.timestamp|naturaltime}} {{scrobble.sport_event.title}} {{scrobble.sport_event.round.name}} {{scrobble.sport_event.round.season.league}}

Latest Podcasted

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

Latest Video Games

{% for scrobble in videogame_scrobble_list %} {% if scrobble.videogame_screenshot %} {% else %} {% endif %} {% endfor %}
Date Cover Title Time played (mins) Percent complete
{{scrobble.timestamp|naturaltime}}{{scrobble.media_obj.title}} {{scrobble.playback_position_seconds|natural_duration}} {{scrobble.percent_played}}

Latest Board Games

{% for scrobble in boardgame_scrobble_list %} {% endfor %}
Date Cover Title Time played (mins)
{{scrobble.timestamp|naturaltime}} {{scrobble.media_obj.title}} {{scrobble.playback_position_seconds|natural_duration}}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}