{% endif %}
{% block caption %}
{% if caption and caption is string %}
{{caption}}
{% elif caption and caption is sequence %}
{{caption[0]}}
{% endif %}
{% endblock caption %}
{% block thead %}
{% block before_head_rows %}{% endblock %}
{% for r in head %}
{% block head_tr scoped %}
{% if exclude_styles %}
{% for c in r %}
{% if c.is_visible != False %}
<{{c.type}} {{c.attributes}}>{{c.display_value}}{{c.type}}>
{% endif %}
{% endfor %}
{% else %}
{% for c in r %}
{% if c.is_visible != False %}
<{{c.type}} {%- if c.id is defined %} id="T_{{uuid}}_{{c.id}}" {%- endif %} class="{{c.class}}" {{c.attributes}}>{{c.display_value}}{{c.type}}>
{% endif %}
{% endfor %}
{% endif %}
{% endblock head_tr %}
{% endfor %}
{% block after_head_rows %}{% endblock %}
{% endblock thead %}
{% block tbody %}
{% block before_rows %}{% endblock before_rows %}
{% for r in body %}
{% block tr scoped %}
{% if exclude_styles %}
{% for c in r %}{% if c.is_visible != False %}
<{{c.type}} {{c.attributes}}>{{c.display_value}}{{c.type}}>
{% endif %}{% endfor %}
{% else %}
{% for c in r %}{% if c.is_visible != False %}
<{{c.type}} {%- if c.id is defined %} id="T_{{uuid}}_{{c.id}}" {%- endif %} class="{{c.class}}" {{c.attributes}}>{{c.display_value}}{{c.type}}>
{% endif %}{% endfor %}
{% endif %}