{% extends 'netbox_dns/zone_base.html' %} {% load helpers %} {% load render_table from django_tables2 %} {% load perms %} {% block controls %} {% endblock controls %} {% 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="ZoneManagedRecordTable_config" %} {% else %} {% include 'inc/table_controls_htmx.html' with table_modal="ZoneManagedRecordTable_config" %} {% endif %}
{% 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="ZoneManagedRecordTable" %} {% endblock %}