{{ title }}

{% if filter_columns %}
{% for fc in filter_columns %} {% endfor %}
{% endif %} {% if items %}
{% for col in columns %} {% endfor %} {% for item in items %} {% set attn = item.get("_attention") if item.get is defined else none %} {% for col in columns %} {% endfor %} {% endfor %}
{% if col.sortable %} {{ col.label }} {% if sort_field == col.key %}{{ "▼" if sort_dir == "desc" else "▲" }}{% endif %} {% else %} {{ col.label }} {% endif %}
{% if col.type == "badge" %} {{ item[col.key] | default("") }} {% elif col.type == "bool" %} {{ item[col.key] | bool_icon }} {% elif col.type == "date" %} {{ item[col.key] | timeago }} {% elif col.type == "currency" %} {{ item[col.key] | currency }} {% else %} {{ item[col.key] | default("") | truncate_text }} {% endif %}
{% if total > items | length %}

Showing {{ items | length }} of {{ total }}

{% endif %} {% else %}

{{ empty_message | default("No data available.") }}

{% endif %}