{% extends 'html.tpl' %}
{%- block table %}
{% if not skip_table_open_tag %}
{%- block caption %}
{%- if caption -%}
{{caption}}
{%- endif -%}
{%- endblock caption %}
{% endif %}
{%- block thead %}
{%- block before_head_rows %}{% endblock %}
{% if head is string %}
{% include head %}
{% else %}
{%- for r in head %}
{%- block head_tr scoped %}
{%- for c in r %}
{%- if c.is_visible != False %}
<{{ c.type }} class="{{c.class}}" {{ c.attributes|join(" ") }}>{{c.value}}{{ c.type }}>
{%- endif %}
{%- endfor %}