47 lines
1.4 KiB
Twig
47 lines
1.4 KiB
Twig
|
{% extends '@CadolesCore/base.html.twig' %}
|
||
|
|
||
|
{% block pagewrapper %}
|
||
|
{{ form_start(form) }}
|
||
|
<h1>
|
||
|
Partage Page
|
||
|
</h1>
|
||
|
|
||
|
<p>
|
||
|
{{ form_widget(form.submit) }}
|
||
|
{% if access=="config" %}
|
||
|
<a class="btn btn-default" href="{{ path('cadoles_portal_config_page_view',{id:entity.id}) }}">Annuler</a>
|
||
|
{% else %}
|
||
|
<a class="btn btn-default" href="{{ path('cadoles_core_home',{id:entity.id}) }}">Annuler</a>
|
||
|
{% endif %}
|
||
|
</p>
|
||
|
|
||
|
{% 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="panel panel-primary">
|
||
|
<div class="panel-heading">
|
||
|
<i class="fa fa-pencil fa-fw"></i> Informations
|
||
|
</div>
|
||
|
|
||
|
<div class="panel-body">
|
||
|
{{ form_row(form.groups) }}
|
||
|
</div>
|
||
|
</div>
|
||
|
{{ form_end(form) }}
|
||
|
{% endblock %}
|