{% extends "base_list.html" %} {% load mathfilters %} {% load static %} {% load naturalduration %} {% load l10n %} {% block title %}{{object.title}}{% endblock %} {% block head_extra %} {% endblock %} {% block lists %}
{% if object.description%}

{{object.description|safe|linebreaks|truncatewords:160}}


{% endif %}

{% if weighin_chart %}
{% endif %}

{{scrobbles.count}} scrobbles {% if long_play_total_seconds %} | Total time: {{ long_play_total_seconds|natural_duration }}{% endif %} {% if long_play_finished_date %} | Finished: {{ long_play_finished_date|date:"M d, Y" }}{% endif %}

Play again

Last scrobbles

{% for scrobble in scrobbles.all|dictsortreversed:"timestamp" %} {% endfor %}
Date Title Notes Source Completed
{{scrobble.local_timestamp}} {{scrobble.logdata.title}} {{scrobble.logdata.notes_as_str}} {{scrobble.source}} {% if scrobble.long_play_complete == True %}Yes (not complete?){% else %}No{% endif %}
{% if is_paginated %} {% endif %}
{% endblock %} {% block extra_js %} {% if weighin_chart %} {% endif %} {% endblock %}