{% extends "base.html" %} {% load static %} {% load django_tables2 %} {% load crispy_forms_field %} {% load crispy_forms_tags %} {% block title %} Browse {{ verbose_name_plural }} {% endblock %} {% block scriptHeader %} {% endblock %} {% block content %} {% include 'browsing/partials/listview_breadcrumb.html' %}

{{ h1 }}

{% if user.is_authenticated and create_view_link %}
Create new {{ verbose_name }}
{% endif %}

Refine Results

{% crispy filter.form filter.form.helper %} {% include 'browsing/partials/column_selector.html' %}
Reset
{% with table.paginator.count as total %}

{{ total }} Result(s)

{% endwith %} {% block table %} {% include 'browsing/partials/table.html' %} {% endblock table %} {% block pagination.allpages %} {% include 'browsing/partials/pagination.html' %} {% endblock pagination.allpages %}
{% include "browsing/partials/download_menu.html" %}
{% endblock %} {% block scripts2 %} {% endblock scripts2 %}