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

All Scrobbles

{% if tag_list %}
Tagged {{ tag_list|join:", " }}
{% endif %}
{% for scrobble in object_list %} {% empty %} {% endfor %}
Date Type Title Time
{{ scrobble.timestamp|naturaltime }} {{ scrobble.get_media_type_display }} {% if scrobble.video %} {{ scrobble.video.title }} {% elif scrobble.track %} {{ scrobble.track.title }} {% elif scrobble.video_game %} {{ scrobble.video_game.title }} {% elif scrobble.book %} {{ scrobble.book.title }} {% elif scrobble.food %} {{ scrobble.food.title }} {% elif scrobble.beer %} {{ scrobble.beer.title }} {% elif scrobble.web_page %} {{ scrobble.web_page.title }} {% elif scrobble.podcast_episode %} {{ scrobble.podcast_episode.title }} {% elif scrobble.board_game %} {{ scrobble.board_game.title }} {% elif scrobble.trail %} {{ scrobble.trail.title }} {% elif scrobble.puzzle %} {{ scrobble.puzzle.title }} {% elif scrobble.brick_set %} {{ scrobble.brick_set.title }} {% elif scrobble.task %} {{ scrobble.task.title }} {% elif scrobble.life_event %} {{ scrobble.life_event.title }} {% elif scrobble.mood %} {{ scrobble.mood.title}} {% elif scrobble.geo_location %} {{ scrobble.geo_location.title }} {% else %} Unknown {% endif %} {% if scrobble.playback_position_seconds %} {{ scrobble.playback_position_seconds|natural_duration }} {% endif %}
No scrobbles found.
{% if page_obj.has_previous or page_obj.has_next %} {% endif %}
{% endblock %}