{% extends "base_list.html" %} {% load urlreplace %} {% block title %}Artists{% endblock %} {% block lists %}

{% if view == 'grid' %} View as List {% else %} View as Grid {% endif %}

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


{% if view == 'grid' %}
{% for artist in object_list %} {% if artist.thumbnail %}
{% endif %} {% endfor %}
{% else %}
{% for artist in object_list %} {% endfor %}
Scrobbles Artist
{{artist.scrobbles.count}} {{artist}}
{% endif %}
{% endblock %}