{% set is_striped = c.striped or 'table-striped' in (c.css_class or '') %} {% set is_hover = c.hover or 'table-hover' in (c.css_class or '') %}
{% for col in c.headers %} {% endfor %} {% if c.rows %} {% for row in c.rows %} {% for cell in row %} {% endfor %} {% endfor %} {% endif %}
{{ col }}
{% if cell is string and (cell.startswith('<') or cell.startswith('{')) %} {{ cell }} {% else %} {{ cell }} {% endif %}