{% if add_column_url %}
{% endif %}
{% if export_url %}
{% endif %}
{% endif %}
{% for col in columns %}
{% set align = col.align or 'left' %}
{% set th_dzn = (col.dzn or '') + ' ' + cell_pad_dzn %}
{% set th_cls = th_dzn + ' ' + ('text-left' if align=='left' else ('text-right' if align=='right' else 'text-center')) %}
{% if sort_url and col.sortable %}
{# build toggle dir based on current state #}
{% set next_dir = (toggle_dir if sort_key==col.key else 'asc') %}
{% else %}
{{ col.label }}
{% endif %}
{% endfor %}
{% for row in rows %}
{# zebra striping without :odd/:even — compute server-side #}
{% set row_bg = 'bg-[rgba(15,23,42,.03)]' if striped and loop.index0 % 2 == 1 else '' %}
{% for col in columns %}
{% set align = col.align or 'left' %}
{% set td_cls = cell_pad_dzn + ' ' + ('text-left' if align=='left' else ('text-right' if align=='right' else 'text-center')) %}