{% extends "base_list.html" %} {% block title %}Tracks{% endblock %} {% block lists %}

{% if page_obj.has_previous %} previous {% endif %} Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }} {% if page_obj.has_next %} next {% endif %}


{% for track in object_list %} {% endfor %}
Scrobbles Track Artist
{{track.scrobble_set.count}} {{track}} {{track.artist}}
{% endblock %}