{% for column in columns %}
{% if not column.hidden %}
{% include "components/table_header.html" with sort=sort key=column.label name=column.label_as_str %}
{% else %}
{% if column.sortable %}
{% include "components/table_header.html" with sort=sort key=column.label name=column.label_as_str %}
{% else %}
{{column.label_as_str}}
{% endif %}
{% endif %}
{% endfor %}
{% for row in rows %}
{% include "components/grid_row.html" with form=row|editor:fields row=row columns=columns %}
{% endfor %}