Fixes #12845: Fix pagination of related IP addresses table

This commit is contained in:
Jeremy Stretch 2023-06-14 15:29:48 -04:00
parent 0b2162569f
commit 8aeb31751a

View File

@ -2,18 +2,18 @@
{% load helpers %} {% load helpers %}
{% block content %} {% block content %}
{% include 'inc/table_controls_htmx.html' with table_modal="IPAddressTable_config" %} {% include 'inc/table_controls_htmx.html' with table_modal="IPAddressTable_config" %}
<form method="post"> <form method="post">
{% csrf_token %} {% csrf_token %}
<div class="card"> <div class="card">
<div class="card-body" id="object_list"> <div class="card-body htmx-container table-responsive" id="object_list">
{% include 'htmx/table.html' %} {% include 'htmx/table.html' %}
</div> </div>
</div> </div>
</form> </form>
{% endblock content %} {% endblock %}
{% block modals %} {% block modals %}
{{ block.super }} {{ block.super }}
{% table_config_form table %} {% table_config_form table %}
{% endblock modals %} {% endblock modals %}