Projets du programme
Nouveau projet
{% set projects = program.projects ?? [] %} {% if projects is empty %}
Aucun projet pour ce programme
Créez votre premier projet et rattachez-le à ce programme.
Nouveau projet
{% else %}
{% for p in projects %} {% set progress = p.progress ?? 0 %} {% set budget = p.totalBudget ?? 0 %} {% set status = p.status ?? '' %} {# Badge statut : mapping simple #} {% set statusBadge %} {{ p.status | trans }} {% endset %} {# Matière de recherche #} {% set _search = (p.name ~ ' ' ~ (p.acronym ?? '') ~ ' ' ~ (status ?? ''))|lower|trans|replace({'é':'e','è':'e','ê':'e','à':'a','ù':'u','ç':'c'}) %}
{{ p.acronym ?? '' }} - {{ p.name }}
{{ statusBadge|raw }}  •  {{ budget|format_currency(p.currency ?? program.currency, {fraction_digit: 0}) }}  •  {% if p.startDate %}Début : {{ p.startDate|date('d/m/Y') }}{% else %}Début : —{% endif %}  |  {% if p.endDate %}Fin : {{ p.endDate|date('d/m/Y') }}{% else %}Fin : —{% endif %}
{{ (progress|default(0))|number_format(1, '.', ' ') }}% exécuté
{% if p.isWishList %}{% endif %}
{% endfor %}
{% endif %}