mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-30 02:25:00 +00:00
23 lines
641 B
Twig
23 lines
641 B
Twig
{% extends "@ChillEvent/Admin/index.html.twig" %}
|
|
|
|
{% block admin_content -%}
|
|
|
|
<h1>{{ 'Status edit'|trans }}</h1>
|
|
|
|
{{ form_start(edit_form) }}
|
|
{{ form_row(edit_form.name) }}
|
|
{{ form_row(edit_form.type) }}
|
|
{{ form_row(edit_form.active) }}
|
|
|
|
<ul class="record_actions sticky-form-buttons">
|
|
<li class="cancel">
|
|
<a href="{{ path('chill_event_admin_status') }}" class="btn btn-cancel">{{ 'Back to the list'|trans }}</a>
|
|
</li>
|
|
<li>
|
|
{{ form_row(edit_form.submit, { 'attr': { 'class' : 'btn btn-edit' }}) }}
|
|
</li>
|
|
</ul>
|
|
|
|
{{ form_end(edit_form) }}
|
|
{% endblock %}
|