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

Projects

Manage and monitor conservation projects

{% if projects|length > 0 %}
{% for project in projects %}

{{ project.name }}

{{ project.description ?? 'No description' }}

{{ project.status }}
Progress {{ project.progressPercentage|number_format(0) }}%

{{ project.indicators|length }}

Indicators

{{ project.activities|length }}

Activities

{{ project.locations|length }}

Locations

{{ project.startDate|date('M Y') }} - {{ project.endDate ? project.endDate|date('M Y') : 'Ongoing' }}
View Details
{% endfor %}
{% else %}

No projects yet

Get started by creating your first project

{% endif %}
{% endblock %}