{% extends "base_list.html" %} {% load mathfilters %} {% load static %} {% block title %}{{object.name}}{% endblock %} {% block lists %}
{% if object.cover_image %}

{% endif %}
{% if object.theaudiodb_description %}

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


{% endif %}

{% if album.tadb_link %}{% endif %} {% if album.allmusic_link %}{% endif %}

{{object.scrobbles.count}} scrobbles

{% if charts %}

{% for chart in charts %}{{chart}}{% if forloop.last %}{% else %} | {% endif %}{% endfor %}

{% endif %}

Top tracks

{% for track in object.tracks %} {% endfor %}
Rank Track Artist Count
{{rank}}#1 {{track.title}} {{track.artist}} {{track.scrobble_count}}

Last scrobbles

{% for scrobble in object.scrobbles %} {% endfor %}
Date Track Artist
{{scrobble.timestamp}} {{scrobble.track.title}} {{scrobble.track.artist.name}}
{% endblock %}