{% extends 'base_template.html' %} {% import "_macros.html" as macros %} {% block content %}
{{ macros.report_introduction(report_details) }} {{ macros.network_summary(network_summary) }} {% for section_name, section_data in sections.items() %}
{{ loop.index }}

{{ section_name }} {% if site_filter %} for site {{ site_filter }}{% endif %}

{% for item_name, item_value in section_data %} {% endfor %}
{{ item_name }} {{ item_value }}
{% endfor %}
{% endblock %}