{% extends "base.html" %} {% block content %}

{{ charts[0].title }}

{{ charts[0].description }}

{{ charts[1].title }}

{{ charts[1].description }}

{{ charts[2].title }}

{{ charts[2].description }}

{% if table_data %}

Data Table

{% for header in table_data.headers %} {% endfor %} {% for row in table_data.rows %} {% for cell in row.values() %} {% endfor %} {% endfor %}
{{ header }}
{{ cell }}
{% endif %} {% endblock %}