{% extends "sundae/base.html" %} {% load sundae_tags %} {% block title %}{{ object_verbose_name_plural|capfirst }}{% endblock %} {% block topnav %} {% endblock %} {% block content %}

{{ object_verbose_name_plural|capfirst }}

{% if page_obj %}

Showing {{ page_obj.start_index }} - {{ page_obj.end_index }} of {{ paginator.count }} {{ object_verbose_name_plural }}

{% endif %}
{% if create_view_url %} Create {{ object_verbose_name|capfirst }} {% endif %}
{% if view.search_fields or filterset %} {% include "sundae/partial/filters.html" %} {% endif %} {% include "sundae/partial/active_filters.html" %} {% if object_list %} {% object_list %} {% else %}

There are no {{ object_verbose_name_plural }}.

Create one
{% endif %} {% include 'sundae/partial/pagination.html' %}
{% endblock %}