{% extends 'layout/content.html.twig' %} {% block title %}{% endblock %} {% block stylesheets %} {{ encore_entry_link_tags('report_progression') }} {% endblock %} {% block javascripts %} {{ encore_entry_script_tags('report_progression') }} {% endblock %} {% block breadcrumb %} {% endblock %} {% block sidebar %} {{ render(controller('App\\Controller\\SharedController::getProjectSideBarMenu', {acronym: project.acronym, step: step, show : 'show'})) }} {% endblock %} {% block content %}
{% include 'project/partials/_project_card_header.html.twig' %} {% if activities is empty %}

Pas d'activité pour le moment.

{% else %}
{% for month, mothName in monthNames %} {% endfor %} {% if currentMonth %} {% endif %} {% for activity in activities %} {% set lastPlanned = null %} {% set lastActual = null %} {% for month in months %} {% set milestone = milestones[activity.id][month|date('Y-m')] ?? null %} {% if milestone and milestone.plannedProgress is not null %} {% set lastPlanned = milestone.plannedProgress ?? 0 %} {% set lastActual = milestone.actualProgress ?? 0 %} {% else %} {% endif %} {% endfor %} {% set currentMilestone = milestones[activity.id][currentMonth|date('Y-m')] ?? null %} {% if currentMilestone is not null %} {% else %} {% endif %} {% endfor %}
ActivitéPlanifié {{ mothName|trans }} {{ month|date('Y') }} Réalisé {{ mothName|trans }} {{ month|date('Y') }}Cible {{ (currentMonth)|date('M')|trans }} {{ currentMonth|date('Y') }}
{{ activity.name }}
{% if milestone.actualProgress %} % {% endif %}
{% if currentMilestone.expectedNextProgress %} % {% endif %}
{% endif %}
{{ project_action_buttons(project) }}
{% endblock %}