2022-07-21 16:15:47 +02:00
|
|
|
{% extends 'base.html.twig' %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
{{ form_start(form) }}
|
|
|
|
<h1 class="page-header">
|
|
|
|
{% if mode=="update" %}
|
|
|
|
Modification Liste Blanche = {{ whitelist.label }}
|
|
|
|
{% elseif mode=="submit" %}
|
|
|
|
Création Liste Blanche
|
|
|
|
{% endif %}
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
{{ form_widget(form.submit) }}
|
|
|
|
<a class="btn btn-secondary" href={{ path('app_admin_whitelist') }}>Annuler</a>
|
|
|
|
{% if mode=="update" %}
|
|
|
|
<a class="btn btn-danger float-end" href={{ path('app_admin_whitelist_delete',{id:whitelist.id}) }} data-method="delete" data-confirm="Êtes-vous sûr de vouloir supprimer cet enregistrement ?">Supprimer</a>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<br><br>
|
|
|
|
|
|
|
|
{% 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">
|
|
|
|
<div class="card-header">
|
|
|
|
<i class="fa fa-pencil-alt fa-fw"></i> Informations
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card-body">
|
|
|
|
{{ form_label(form.label) }}
|
|
|
|
{{ form_widget(form.label) }}
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-07-26 16:03:53 +02:00
|
|
|
|
|
|
|
{% 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:"Whitelist",entityid:whitelist.id})) }}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2022-07-21 16:15:47 +02:00
|
|
|
{{ form_end(form) }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block localjavascript %}
|
|
|
|
{% endblock %}
|