{% extends 'base.html.twig' %} {% block title %}{{ action.name }} - PTGE{% endblock %} {% block body %}
{% for tag in action.tags %}
{{ tag.name }}
{% endfor %} {% if action.priority %}
Action prioritaire
{% endif %}

{{ action.name }}

{% if action.filename %}
{{ action.altImage }}
{{ action.legendImage }}
{% endif %}

Objectif

{{ action.objective }}

Contexte

{{ action.context|nl2br }}

Description

{{ action.description|nl2br }}

{% if action.public %}
Public cible

{{ action.public|nl2br }}

{% endif %} {% if action.holder %}
Porteur

{{ action.holder|nl2br }}

{% endif %} {% if action.partner %}
Partenaires

{{ action.partner|nl2br }}

{% endif %} {% if action.indicator %}
Indicateurs

{{ action.indicator|nl2br }}

{% endif %} {% if action.cost %}
Coût

{{ action.cost|nl2br }}

{% endif %} {% if action.animation %}
Besoin en animation PTGE

{{ action.animation|nl2br }}

{% endif %} {% if action.sector %}
Secteurs

{{ action.sector|nl2br }}

{% endif %} {% if action.sage %}
Lien avec le SAGE de l’Armançon revisé

{{ action.sage|nl2br }}

{% endif %}
{% if action.actionSteps|length > 0 %}

La vie de l’action

{% for step in action.actionSteps %}
1
{{ step.name }}

{{ step.name }}

{{ step.description|nl2br }}

{% if action.actionSteps|length >= 2 and loop.index is odd %} Flèche bleu {% elseif action.actionSteps|length >= 3 and loop.index is even %} Flèche verte {% endif %}
{% endfor %}
{% endif %}
{% endblock %}