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

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

{% if section_name in ['Vendors Overview', 'Device Types'] %} {% for item, stats in section_data %} {% endfor %}
{{ section_name.rstrip('s') }} Count Ratio (%)
{{ item }} {{ stats.count }} {{ stats.percentage|round(2) }}%
{% else %} {% for item_name, item_value in section_data %} {% endfor %}
{{ item_name }} {{ item_value }}
{% endif %}
{% endfor %}
{% endblock %}