|
|
@@ -2,15 +2,17 @@
|
|
|
{% load helpers %}
|
|
|
{% load render_table from django_tables2 %}
|
|
|
|
|
|
-{% with preferences|get_key:"pagination.placement" as paginator_placement %}
|
|
|
- {% if paginator_placement == 'top' or paginator_placement == 'both' %}
|
|
|
- {% include 'inc/paginator.html' with htmx=True table=table paginator=table.paginator page=table.page placement='top' %}
|
|
|
- {% endif %}
|
|
|
- {% render_table table 'inc/table_htmx.html' %}
|
|
|
- {% if paginator_placement != 'top' %}
|
|
|
- {% include 'inc/paginator.html' with htmx=True table=table paginator=table.paginator page=table.page %}
|
|
|
- {% endif %}
|
|
|
-{% endwith %}
|
|
|
+<div class="htmx-container table-responsive">
|
|
|
+ {% with preferences|get_key:"pagination.placement" as paginator_placement %}
|
|
|
+ {% if paginator_placement == 'top' or paginator_placement == 'both' %}
|
|
|
+ {% include 'inc/paginator.html' with htmx=True table=table paginator=table.paginator page=table.page placement='top' %}
|
|
|
+ {% endif %}
|
|
|
+ {% render_table table 'inc/table_htmx.html' %}
|
|
|
+ {% if paginator_placement != 'top' %}
|
|
|
+ {% include 'inc/paginator.html' with htmx=True table=table paginator=table.paginator page=table.page %}
|
|
|
+ {% endif %}
|
|
|
+ {% endwith %}
|
|
|
+</div>
|
|
|
|
|
|
{# Include the updated object count for display elsewhere on the page #}
|
|
|
<div class="d-none" hx-swap-oob="innerHTML:.total-object-count">{{ table.rows|length }}</div>
|