{% extends "base_list.html" %} {% load mathfilters %} {% load static %} {% load humanize %} {% block title %}{{object.title}}{% endblock %} {% block head_extra %} {% endblock %} {% block extra_js %} {% endblock %} {% block lists %}

{% if object.summary %}

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


{% endif %}

{{scrobbles.count}} scrobbles

Last scrobbles

{% for scrobble in object.scrobble_set.all|dictsortreversed:"timestamp" %} {% endfor %}
Date With Notes
{{scrobble.local_timestamp}} {% for person in scrobble.logdata.with_people%}{{person}}{% if not forloop.last %}, {% endif%}{% endfor %} {% for note in scrobble.logdata.notes %}{{note}}{% if not forloop.last %}; {% endif%}{% endfor %}
{% endblock %}