{% 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 %}

{% if artist.theaudiodb_genre %} {{artist.theaudiodb_genre}} ({{genre_count}}){% if artist.theaudiodb_mood %} · {% endif %} {% endif %} {% if artist.theaudiodb_mood %} {{artist.theaudiodb_mood}} ({{mood_count}}) {% endif %}

{{artist.scrobbles.count}} scrobbles

{% if charts %} {% include "scrobbles/_chart_links.html" %} {% endif %}
{% if similar_artists %}

Similar artists

{% for sa in similar_artists %} {% endfor %}
Artist Score
{% if sa.local_url %}{{sa.name}}{% else %}{{sa.name}}{% endif %} {{sa.score}} {% if sa.musicbrainz_url %}musicbrainz{% endif %}
{% endif %}

Top tracks

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

Last scrobbles

{% for scrobble in recent_scrobbles %} {% endfor %}
Date Track Album
{{scrobble.local_timestamp}} {{scrobble.track.title}} {{scrobble.track.primary_album.name}}
{% endblock %}