{% for col in table.columns %}
{% endfor %}
{% if table.actions %}
{{ col.label }}
{% if col.badge_key %}
{% with badge_map=row|get_item:col.badge_key badge_value=row|get_item:col.key status_key=row|get_item:'status' %}
{{ badge_value }}
{% endwith %}
{% elif col.bold %}
{{ row|get_item:col.key }}
{% else %}
{{ row|get_item:col.key }}
{% endif %}
{% for action in table.actions %}
{% with url_val=row|get_item:action.url_key %}
{% if action.icon %}{% endif %}
{{ action.label }}
{% endwith %}
{% endfor %}
{% endif %}