diff --git a/netbox/templates/extras/htmx/script_result.html b/netbox/templates/extras/htmx/script_result.html index 3fe03bbe7..8bdbf744b 100644 --- a/netbox/templates/extras/htmx/script_result.html +++ b/netbox/templates/extras/htmx/script_result.html @@ -1,6 +1,7 @@ {% load helpers %} {% load log_levels %} {% load i18n %} +{% load render_table from django_tables2 %}

@@ -41,7 +42,21 @@

{% trans "Log" %}
- {% include 'htmx/table.html' %} + +
+ {% 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 %} +
+ +{# Include the updated object count for display elsewhere on the page #} +
{{ table.rows|length }}
{% endif %}