{# tom_common/templates/tom_common/bootstrap_htmx.html #} {# Extends the default django-tables2 bootstrap4 template with HTMX attributes #} {# for sorting (column headers) and pagination (page links). #} {% extends "django_tables2/bootstrap4.html" %} {% load django_tables2 %} {% load i18n %} {% block table.thead %} {% if table.show_header %} {% for column in table.columns %} {{ column.header }} {% endfor %} {% endif %} {% endblock table.thead %} {# Pagination block overrides #} {% block pagination.previous %} {% endblock pagination.previous %} {% block pagination.range %} {% for p in table.page|table_page_range:table.paginator %}
  • {% endfor %} {% endblock pagination.range %} {% block pagination.next %} {% endblock pagination.next %}