{% extends 'base/layout.html' %} {% load buttons %} {% load helpers %} {% load render_table from django_tables2 %} {% load static %} {% block tabs %} {% endblock tabs %} {% block content-wrapper %}
{# Object list #}
{# Applied filters #} {% if filter_form %} {% applied_filters filter_form request.GET %} {% endif %} {# Object table controls #} {% if settings.VERSION < '3.1.2' %} {% include 'inc/table_controls.html' with table_modal="ObjectTable_config" %} {% else %} {% include 'inc/table_controls_htmx.html' with table_modal="ObjectTable_config" %} {% endif %} Download xlsx
{% csrf_token %} {# Object table #}
{% render_table table 'inc/table.html' %}
{# Paginator #} {% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
{# Filter form #} {% if filter_form %}
{% include 'inc/filter_list.html' %}
{% endif %}
{# Table config form #} {% table_config_form table table_name="ObjectTable" %} {% endblock content-wrapper %}