{% extends 'base.html.twig' %} {% form_theme formAxe _self %} {% block stylesheets %} {% endblock %} {% block header %}
{% if editMode %}

Fiche axe

{% else %}

Créer une nouvel axe

{% endif %}
{% endblock %} {% block body %} {{ form_start(formAxe) }}

{% if not editMode %} Nouvelle fiche {% else %} AX-{{ axe.id }} {{ axe.designation | capitalize }} {% endif %}

{% if editMode %}
Status :
Actif
Progression :
Actions stratégiques :
{{ axe.actionstrats|length| default("0") }}
Actions portfolio :
0
Responsable :
{{ formAxe.vars.value.responsable.firstname | default("") }} {{ formAxe.vars.value.responsable.lastname | default("N/C") }}
Mise à jour:
{% endif %}


Informations générales


{{ form_widget(formAxe.title)}}
{{ form_widget(formAxe.designation)}}
{{ form_widget(formAxe.volet)}}
Responsable{{ form_widget(formAxe.responsable)}}
Suppléant{{ form_widget(formAxe.suppleant)}}
{{ form_widget(formAxe.description)}}

Actions stratégiques


{{ form_widget(formAxe.actionstrats)}}

Gestionnaire de fichiers


Notes


{{ form_widget(formAxe.commentaire)}}


{% if is_granted('ROLE_ADMIN') %} {% endif %}
{{ form_end(formAxe) }} {% endblock %} {% block _axe_actionstrats_widget %} {{ form_widget(form)}} {% endblock %} {% block _axe_actionstrats_entry_widget %}
Code{{ form_widget(form.code)}}
Désignation{{ form_widget(form.designation)}}

Actions portfolio associées{{ form_widget(form.actions)}}
{% endblock %} {% block javascripts %} {% endblock %}