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

Reports Archive

Monthly and yearly statistics for the MeshCore network

{% for section in report_sections %}

{{ section.role | capitalize }}

{{ section.description }}

{% if section.years %}
{% for year_data in section.years %}

{{ year_data.year }}

{% for month_num in range(1, 13) %} {% set month_data = year_data.months | selectattr('month', 'equalto', month_num) | list | first %} {% if month_data %} {{ month_abbrs[month_num] }} {% else %} {{ month_abbrs[month_num] }} {% endif %} {% endfor %}
{% endfor %}
{% else %}

No reports available yet.

{% endif %}
{% endfor %} {% include "credit.html" %}
{% endblock %}