{% if context.tabledata %}
{% for title, table in context.tabledata.items() %}
{{ title }}
{% for th, td in table.items() %}
{{ th }} | {{ td }} |
{% endfor %}
{% endfor %}
{% endif %}
{% for fig in context.components[1] %}
{% if context.how_to_guide[context.figs[loop.index - 1]] %}
{% for desc in context.how_to_guide[context.figs[loop.index - 1]] %}
{{ desc[0] }}
{{ desc[1] }}
{% endfor %}
{% endif %}
{% if context.insights[context.figs[loop.index - 1]] %}
{% endif %}
{{ fig }}
{% endfor %}
{% if context.value_table %}
{% for desc in context.how_to_guide["Value Table"] %}
{{ desc[0] }}
{{ desc[1] }}
{% endfor %}
Value |
Count |
Frequency (%) |
{% for row in context.value_table %}
{% endfor %}
{% endif %}