{# Update the template_structure.html document too #} {%- block before_style -%}{%- endblock before_style -%} {% block style %} {%- endblock style %} {%- block before_table %}{% endblock before_table %} {%- block table %} {%- block caption %} {%- if caption -%} {%- endif -%} {%- endblock caption %} {%- block thead %} {%- block before_head_rows %}{% endblock %} {%- 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}} {%- endif %} {%- endfor %} {%- 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 %} {% 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|join(" ") }}>{{ c.display_value }} {% endif %} {%- endfor %} {% endblock tr %} {%- endfor %} {%- block after_rows %}{%- endblock after_rows %} {%- endblock tbody %}
{{caption}}
{%- endblock table %} {%- block after_table %}{% endblock after_table %}