{% block styles %} {% for style in styles %} {% endfor %} {% endblock %} {% block body %} {% block title %} {% if title %}

{{ title }}

{% endif %} {% endblock %} {% block extra %} {% if extra %} {% for key, value in extra.items() %}

{{key}}: {{value}}

{% endfor %} {% endif %} {% endblock %} {% block tables %} {% if tables %} {% for table in tables %} {{ table.render() | safe }} {% endfor %} {% endif %} {% endblock %} {% endblock %}