{% extends 'generic/object_list.html' %} {% load buttons %} {% load helpers %} {% load i18n %} {% block content %} {# Object list tab #}
{# Applied filters #} {% if filter_form %} {% applied_filters model filter_form request.GET %} {% endif %} {# Object table controls with loading indicator #}
{# Loading indicator #}
{% trans "Searching..." %}
{% block extra_table_controls %}{% endblock %}
{% if filter_form %}
{{ filter_form.filter_id }}
{% endif %}
{% if request.user.is_authenticated and table_modal %}
{% if table.config_params or table_configs %} {% endif %}
{% endif %}
{% csrf_token %} {# "Select all" form #} {% if table.paginator.num_pages > 1 %}
{% action_buttons actions model multi=True %}
{% endif %}
{% csrf_token %} {# Warn of any missing prerequisite objects #} {% if prerequisite_model %} {% include 'inc/missing_prerequisites.html' %} {% endif %} {# Objects table #}
{% include 'htmx/table.html' %}
{# /Objects table #} {# Form buttons #}
{% block bulk_buttons %}
{% action_buttons actions model multi=True %}
{% endblock %}
{# /Form buttons #}
{# /Object list tab #} {# Filters tab #} {% if filter_form %}
{% include 'inc/filter_list.html' %}
{% endif %} {# /Filters tab #} {% endblock content %}