{% extends 'lastfm/base.html' %} {% block breadcrumbs %} {% endblock %} {% block content %} {% load ditto_core %}

{{ track.artist }}
{% block title %} {{ track.name }} {% endblock %}

{% with track.albums as album_list %}

This track appears on {% if album_list|length == 1 %}this album{% else %}these albums{% endif %}:

{% include 'lastfm/includes/chart.html' with object_list=album_list chart_type='albums' include_artist=False only %} {% endwith %}
{% include 'lastfm/includes/track_sidebar.html' with track=track perms=perms only %}
{% endblock content %}