{% extends 'base.html.twig' %} {% block header %}

Projet ({{ projets|length }})

{% endblock %} {% block prebody %} {% endblock %} {% block titrefiche %} Projet Action {% endblock %} {% block body %}
{% if is_granted('ROLE_ADMIN') %}{% endif %} {% for projet in projets %}
{% if is_granted('ROLE_ADMIN') %}{% endif %} {% endfor %}
ID Designation Axe Pilotage Budget Actions MaJAction
PROJ-{{ projet.id }} {{ projet.designation | upper }}
{{ projet.description|default("Pas de description")|raw }}
{{ projet.axe.title | default("N/C") }} {{ projet.metier.code | default("N/C") }}
{{ projet.pilote.firstname | default("N/C") }} {{ projet.pilote.lastname | default("N/C") }}
€ {{ projet.budget | default("Non évalué") }} {% for action in projet.actions %} {{ action.priorite.designation | default("N/C") }}    AC-{{ action.id | default("N/C") }} {{ action.designation | default("N/C") | slice(0, 60) }}...
{% endfor %}
{{ projet.publishedat | date("d/m/Y") }}
{% endblock %} {% block javascripts %} {% endblock %}