{% extends base_template %} {% load helpers %} {% block content %} {% include 'inc/table_controls_htmx.html' with table_modal=table_config %}
{% csrf_token %}
{% include 'htmx/table.html' %}
{% block bulk_controls %}
{# Bulk edit buttons #} {% block bulk_edit_controls %} {% with bulk_edit_view=child_model|validated_viewname:"bulk_edit" %} {% if 'bulk_edit' in actions and bulk_edit_view %} {% endif %} {% endwith %} {% endblock bulk_edit_controls %}
{# Bulk delete buttons #} {% block bulk_delete_controls %} {% with bulk_delete_view=child_model|validated_viewname:"bulk_delete" %} {% if 'bulk_delete' in actions and bulk_delete_view %} {% endif %} {% endwith %} {% endblock bulk_delete_controls %}
{# Other bulk action buttons #} {% block bulk_extra_controls %}{% endblock %}
{% endblock bulk_controls %}
{% endblock content %} {% block modals %} {{ block.super }} {% table_config_form table %} {% endblock modals %}