{% set projects = this.projects %} {% if projects|length > 0 %}
{% for project in projects %}

{{ project.name }}

{{ project.status }}

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

Progress {{ project.progressPercentage|number_format(0) }}%
{{ project.indicators|length }} indicators
View Details
{% endfor %}
{% else %}

No projects found matching your criteria

{% endif %}