{% extends "base.html" %} {% load render_table from django_tables2 %} {% load crispy_forms_tags %} {% block content %} {% block htmx_table_ribbon %}{% endblock %} {% if htmx_table_header_template %} {% include htmx_table_header_template %} {% endif %} {% comment %} When a header template is present it includes the Filters dropdown inline with its own buttons. Otherwise render it standalone here. {% endcomment %} {% if possible_filters and not htmx_table_header_template %}
{% include "auctions/partials/htmx_table_filters.html" %}
{% endif %} {% block htmx_table_filter_form %}
{% crispy filter.form %}
{% endblock %} {% block htmx_table %} {% if no_results %}
{{ no_results|safe }}
{% else %} {% render_table table %} {% endif %} {% endblock %}
{% endblock %} {% block extra_js %} {{ block.super }} {% endblock %}