74 lines
2.6 KiB
Twig
Executable File
74 lines
2.6 KiB
Twig
Executable File
{% extends 'base.html.twig' %}
|
|
|
|
{% block body %}
|
|
{{ form_start(form) }}
|
|
<h1 class="page-header">
|
|
{% if mode=="update" %}
|
|
Modification {{ appNiveau02label }} = {{niveau02.label}}
|
|
{% elseif mode=="submit" %}
|
|
Création {{ appNiveau02label }}
|
|
{% endif %}
|
|
</h1>
|
|
|
|
{{ form_widget(form.submit) }}
|
|
<a class="btn btn-secondary" href={{ path('app_'~access~'_niveau02') }}>Annuler</a>
|
|
{% if mode=="update" %}
|
|
<a class="btn btn-danger float-end" href={{ path('app_'~access~'_niveau02_delete',{id:niveau02.id}) }} data-method="delete" data-confirm="Êtes-vous sûr de vouloir supprimer cet enregistrement ?">Supprimer</a>
|
|
{% endif %}
|
|
|
|
{% if app.session.flashbag.has('error') %}
|
|
<div class='alert alert-danger' style='margin: 5px 0px'>
|
|
<strong>Erreur</strong><br>
|
|
{% for flashMessage in app.session.flashbag.get('error') %}
|
|
{{ flashMessage }}<br>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if app.session.flashbag.has('notice') %}
|
|
<div class='alert alert-info' style='margin: 5px 0px'>
|
|
<strong>Information</strong><br>
|
|
{% for flashMessage in app.session.flashbag.get('notice') %}
|
|
{{ flashMessage }}<br>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="card mt-4">
|
|
<div class="card-header">
|
|
<i class="fa fa-pencil-alt fa-fw"></i> Informations
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
{{ form_row(form.niveau01) }}
|
|
|
|
{{ form_row(form.label) }}
|
|
<div class='alert alert-info' style='font-size: 80%;padding: 5px;margin-top:-2px; border-radius:0px 0px 0.25rem 0.25rem'>
|
|
Caractères interdits = caractères spéciaux sauf ' @ . - _<br>
|
|
</div>
|
|
|
|
|
|
{{ form_row(form.code) }}
|
|
{{ form_row(form.email) }}
|
|
{{ form_row(form.telephonenumber) }}
|
|
{{ form_row(form.postaladress) }}
|
|
|
|
{% if form.ldapfilter is defined %}
|
|
{{ form_row(form.ldapfilter) }}
|
|
{% endif %}
|
|
|
|
{% if form.attributes is defined %}
|
|
{{ form_row(form.attributes) }}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{% if auditUse and mode=="update" and (access=="admin" or access=="modo" or access=="audit") %}
|
|
<div class="float-end" style="width:700px;max-width:100%">
|
|
{{ render(path("app_"~access~"_audit_renderid",{entityname:"Niveau02",entityid:niveau02.id})) }}
|
|
</div>
|
|
{% endif %}
|
|
{{ form_end(form) }}
|
|
{% endblock %}
|