{% extends "base_list.html" %} {% load urlreplace %} {% block title %}Locations{% endblock %} {% block head_extra %} {% endblock %} {% block extra_js %} {% endblock %} {% block lists %}

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


{% for location in object_list %} {% endfor %}
Scrobbles Title Point
{{location.scrobble_set.count}} {{location.title}} {{location.lat}}x{{location.lon}}
{% endblock %}