{% if table %} {% for hrow in table.header_rows %} {% for cell in hrow %} {% endfor %} {% endfor %} {% for row in table.rows %} {% if row.get('is_section') %} {% else %} {% for cell in row.cells %} {% endfor %} {% endif %} {% endfor %} {% if table.footer_cells %} {% for cell in table.footer_cells %} {% endfor %} {% endif %}
{{ cell.label }}
{{ row.get('section_label', '') }}
{{ cell }}
{{ cell.text }}
{% elif has_table_fallback and fallback_rows %} {% for key in fallback_rows[0].keys() %} {% endfor %} {% for row in fallback_rows %} {% for key, val in row.items() %} {% endfor %} {% endfor %}
{{ key }}
{{ val }}
{% elif table and table.empty_message %}

{{ table.empty_message }}

{% endif %}