{% extends "base_list.html" %} {% block title %}{{object.title}}{% endblock %} {% block lists %}
{% if track.primary_image_url %}

{% endif %}

{{scrobbles.count}} scrobbles

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

Similar recordings

{% for sr in object.similar_recordings|slice:":10" %} {% endfor %}
Track Artist Score
{{sr.recording_name}} {{sr.artist_credit_name}} {{sr.score}}
{% endif %}

Last scrobbles

{% for scrobble in scrobbles.all %} {% endfor %}
Date Track Album Artist
{{scrobble.local_timestamp}} {{scrobble.track.title}} {{scrobble.track.primary_album}} {{scrobble.track.artist}}
{% endblock %}