21 lines
827 B
Twig
21 lines
827 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block body %}
|
|
<div class="w-100 h-100 p-5 m-auto">
|
|
<div class="card p-3 m-3">
|
|
<div class="card-header border-0">
|
|
<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 %} |