21 lines
872 B
Twig
21 lines
872 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block body %}
|
|
<div class=" col-md-10 m-auto p-5">
|
|
<div class="card">
|
|
<div class="card-title shadow-sm p-3 d-flex justify-content-between align-items-center">
|
|
<h2>Modifier l'organisation</h2>
|
|
{% if is_granted("ROLE_SUPER_ADMIN") %}
|
|
{# <a href="{{ path('organization_delete', {'id': organization.id}) }}" class="btn btn-danger">Supprimer</a>#}
|
|
{% endif %}
|
|
</div>
|
|
<div class="card-body">
|
|
|
|
{{ form_start(form, {'action': path('organization_edit', {'id': organization.id}), 'method': 'PUT'}) }}
|
|
{{ form_widget(form) }}
|
|
<button type="submit" class="btn btn-primary">Enregistrer</button>
|
|
{{ form_end(form) }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |