mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
21 lines
548 B
Twig
21 lines
548 B
Twig
{% extends '@ChillMain/Admin/layout_permissions.html.twig' %}
|
|
|
|
{% block title %}{{ 'Center edit'|trans }}{% endblock %}
|
|
|
|
{% block admin_content -%}
|
|
<h1>{{ 'Center edit'|trans }}</h1>
|
|
|
|
{{ form_start(edit_form) }}
|
|
{{ form_row(edit_form.name) }}
|
|
{{ form_row(edit_form.submit, { 'attr' : { 'class' : 'sc-button green' } } ) }}
|
|
{{ form_end(edit_form) }}
|
|
|
|
<ul class="record_actions">
|
|
<li>
|
|
<a href="{{ path('admin_center') }}">
|
|
{{ 'Back to the list'|trans }}
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
{% endblock %}
|