2021-12-14 11:41:39 -05:00
|
|
|
{# Render an HTMX-enabled table with paginator #}
|
2022-01-19 09:14:38 -05:00
|
|
|
{% load helpers %}
|
2021-12-13 16:51:59 -05:00
|
|
|
{% load render_table from django_tables2 %}
|
|
|
|
|
2022-01-19 09:14:38 -05:00
|
|
|
{% with preferences|get_key:"pagination.placement" as paginator_placement %}
|
|
|
|
{% if paginator_placement == 'top' or paginator_placement == 'both' %}
|
|
|
|
{% include 'inc/paginator_htmx.html' with paginator=table.paginator page=table.page %}
|
|
|
|
{% endif %}
|
|
|
|
{% render_table table 'inc/table_htmx.html' %}
|
|
|
|
{% if paginator_placement != 'top' %}
|
|
|
|
{% include 'inc/paginator_htmx.html' with paginator=table.paginator page=table.page %}
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|