{% extends 'base.html.twig' %} {% block body %} {{ form_start(form) }}

{% if mode=="update" %} Modification Groupe = {{group.label}} {% elseif mode=="submit" %} Création Groupe {% endif %}

{{ form_widget(form.submit) }} Annuler {% if mode=="update" %} Supprimer {% endif %} {% if app.session.flashbag.has('error') %}
Erreur
{% for flashMessage in app.session.flashbag.get('error') %} {{ flashMessage }}
{% endfor %}
{% endif %} {% if app.session.flashbag.has('notice') %}
Information
{% for flashMessage in app.session.flashbag.get('notice') %} {{ flashMessage }}
{% endfor %}
{% endif %}
Informations
{{ form_row(form.label) }}
Caractères interdits = caractères spéciaux sauf ' @ . - _
{% if form.owner is defined %} {{ form_row(form.owner) }} {% endif %} {% if form.isworkgroup is defined %} {{ form_row(form.isworkgroup) }} {% endif %}
{{ form_row(form.isopen) }}
{{ form_row(form.description) }} {% if form.ldapfilter is defined %} {{ form_row(form.fgassoc) }} {{ form_row(form.ldapfilter) }} {% endif %} {% if form.attributes is defined %} {{ form_row(form.fgassoc) }} {{ form_row(form.attributes) }} {% endif %} {% if form.email is defined %} {{ form_row(form.email) }} {% endif %}
{% if auditUse and mode=="update" and (access=="admin" or access=="modo" or access=="audit") %}
{{ render(path("app_"~access~"_audit_renderid",{entityname:"Group",entityid:group.id})) }}
{% endif %} {{ form_end(form) }} {% endblock %} {% block localscript %} {% endblock %}