{% extends base_template %} {% load helpers %} {% load buttons %} {% load render_table from django_tables2 %} {% load i18n %} {% block content %} {% if table %}
{# Results / Filters inner tabs #} {# Results tab pane #}
{# Applied filters #} {% if filter_form %} {% applied_filters model filter_form request.GET %} {% endif %} {# Table controls: quick search + configure table #} {% include 'inc/table_controls_htmx.html' with table_modal=table.name|add:"_config" %}
{% csrf_token %} {# Select all (multi-page) #} {% if table.paginator.num_pages > 1 %}
{% endif %}
{% csrf_token %} {# Objects table #}
{% include 'htmx/table.html' %}
{# Bulk action buttons #}
{# Filters tab pane #} {% if filter_form %}
{% include 'inc/filter_list.html' %}
{% endif %} {% else %}
{% trans "No custom objects are linked to this object." %}
{% endif %} {% endblock content %} {% block modals %} {% if table %} {% table_config_form table %} {% endif %} {% endblock modals %}