{% block columns %}
{% for col in columns %}
|
{% if col.header_template %}
{% include col.header_template with column=col %}
{% elif col.filter_field %}
{% include "htmx/incident/cells/_incident_filterable_column_header.html" with column=col %}
{% elif col.sort_field %}
{% include "htmx/incident/cells/_incident_sortable_column_header.html" with column=col %}
{% else %}
{{ col.label }}
{% endif %}
|
{% empty %}
No columns configured |
{% endfor %}
{% endblock columns %}
{% block incident_rows %}
{% include "htmx/incident/_incident_table_rows.html" %}
{% endblock incident_rows %}
{% block incident_list_footer %}
{% endblock incident_list_footer %}