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

{{ project.name }}

{{ project.status }}

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

Overall Progress {{ project.progressPercentage|number_format(1) }}%

Start Date

{{ project.startDate|date('M d, Y') }}

End Date

{{ project.endDate ? project.endDate|date('M d, Y') : 'Ongoing' }}

Budget

${{ project.budget|number_format(0) }}

Locations

{{ project.locations|length }} sites

Indicators

{% if project.indicators|length > 0 %}
{% for indicator in project.indicators %}

{{ indicator.name }}

{{ indicator.category }}

{{ indicator.description }}

Baseline

{{ indicator.baselineValue }} {{ indicator.unit }}

Current

{{ indicator.currentValue ?? '-' }} {{ indicator.unit }}

Target

{{ indicator.targetValue }} {{ indicator.unit }}

Progress {{ indicator.progressPercentage|number_format(0) }}%
{% endfor %}
{% else %}

No indicators defined for this project

{% endif %}

Activities

{% if project.activities|length > 0 %}
{% for activity in project.activities %} {% endfor %}
Activity Category Planned Date Participants Status
{{ activity.name }}
{{ activity.description|default('-')|slice(0, 50) }}...
{{ activity.category }} {{ activity.plannedDate|date('M d, Y') }} {{ activity.participantCount ?? '-' }} {{ activity.isOverdue and activity.status != 'completed' ? 'Overdue' : activity.status }}
{% else %}

No activities planned for this project

{% endif %}
{% endblock %}