{% if value.data.headers or value.data.rows %} {% if value.title %}

{{ value.title }}

{% endif %} {% if value.caption %}{% endif %} {% if value.data.headers %} {% for header_row in value.data.headers %} {% for cell in header_row %} {{ cell.value|safe }} {% endfor %} {% endfor %} {% endif %} {% for row in value.data.rows %} {% for cell in row %} <{{ cell.type }}{% if cell.scope %} scope="{{ cell.scope }}"{% endif %}{% if cell.colspan %} colspan="{{ cell.colspan }}"{% endif %}{% if cell.rowspan %} rowspan="{{ cell.rowspan }}" {% endif %}>{{ cell.value|safe }} {% endfor %} {% endfor %}
{{ value.caption }}
{% endif %}