{% endif %}
{% for column in table.columns %}
{% if column.sortable %}
{% include "components/table_header.html" with sort=sort key=column.key name=column.name %}
{% else %}
{{column.name}}
{% endif %}
{% endfor %}
{% if table.rows %}
{% for row in table.rows %}
{% if table.multiselect %}
{% endif %}
{% for column in table.columns %}
{% if table.update %}