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

Indicators

Track and monitor M&E indicators across all projects

{% if categories|length > 0 %}
{% for category in categories %} {% endfor %}
{% endif %} {% if indicators|length > 0 %}
{% for indicator in indicators %} {% endfor %}
Indicator Project Category Baseline Current Target Progress Trend
{{ indicator.name }}
{{ indicator.frequency }} updates
{{ indicator.project.name }} {{ indicator.category }} {{ indicator.baselineValue }} {{ indicator.unit }} {{ indicator.currentValue ?? '-' }} {{ indicator.unit }} {{ indicator.targetValue }} {{ indicator.unit }}
{{ indicator.progressPercentage|number_format(0) }}%
{% if indicator.trend == 'up' %} Up {% elseif indicator.trend == 'down' %} Down {% else %} Stable {% endif %}
{% else %}

No indicators yet

Start tracking your conservation impact by adding indicators

{% endif %}
{% endblock %}