{% 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 %}
Track Artist Scrobbles
{{track}} {{track.artist}} {{track.scrobble_set.count}}
{% endblock %}