{% for o in order %} {% if o.type == "section" %}
{% set section = sections[o.index] %} {% if section.title %}

{{ section.title }}

{% endif %} {% if section.text %}

{{ section.text }}

{% endif %} {% if section.html %} {{ section.html|safe }} {% endif %} {% elif o.type == "table" %} {% set table = tables[o.index] %}

{{ table.title }}

{% elif o.type == "chart" %} {% set chart = charts[o.index] %}
{% elif o.type == "toggleable_chart" %} {% set chart = toggleable_charts[o.index] %}
{% else %}

Unknown type: "{{ o.type }}"

{% endif %} {% endfor %}