{% extends 'layout.html.twig' %} {% block title %}Reports - Honeyguide M&E{% endblock %} {% block page_title %}Reports{% endblock %} {% block content %}

Reports

Analytics and visualizations of your M&E data

Project Status Distribution

{% if projectStatusData.labels|length > 0 %}
{% else %}
No project data available
{% endif %}

Activity Status Distribution

{% if activityStatusData.labels|length > 0 %}
{% else %}
No activity data available
{% endif %}

Indicators by Category

{% if indicatorCategoryData.labels|length > 0 %}
{% else %}
No indicator data available
{% endif %}

Quick Summary

Total Projects {{ projectStatusData.data|reduce((carry, v) => carry + v, 0) }}
Total Activities {{ activityStatusData.data|reduce((carry, v) => carry + v, 0) }}
Total Indicators {{ indicatorCategoryData.data|reduce((carry, v) => carry + v, 0) }}
Indicator Categories {{ indicatorCategoryData.labels|length }}

Export Options

{% endblock %}