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

{% else %} {% if object.album_set.first.cover_image %}

{% endif %} {% endif %}
{% if artist.biography %}

{{artist.biography|safe|linebreaks|truncatewords:160}}


{% endif %}

{% if artist.bandcamp_link %}{% endif %} {% if artist.allmusic_link %}{% endif %}

{{artist.scrobbles.count}} scrobbles

{% if charts %}

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

{% endif %}

Top tracks

{% for track in tracks_ranked %} {% endfor %}
Rank Track Album Count
#{{track.0}} {{track.1.title}} {{track.1.album}} {{track.1.scrobble_count}}

Last scrobbles

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