mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 13:24:25 +00:00
23 lines
610 B
Twig
23 lines
610 B
Twig
{% extends "ChillEventBundle:Admin:layout.html.twig" %}
|
|
|
|
{% block admin_content -%}
|
|
|
|
<h1>{{ 'Status creation'|trans }}</h1>
|
|
|
|
{{ form_start(form) }}
|
|
{{ form_row(form.name) }}
|
|
{{ form_row(form.type) }}
|
|
{{ form_row(form.active) }}
|
|
|
|
<ul class="record_actions">
|
|
<li class="cancel">
|
|
<a href="{{ path('chill_event_admin_status') }}" class="sc-button bt-cancel">{{ 'Back to the list'|trans }}</a>
|
|
</li>
|
|
<li>
|
|
{{ form_row(form.submit, { 'attr': { 'class' : 'sc-button bt-new' }}) }}
|
|
</li>
|
|
</ul>
|
|
|
|
{{ form_end(form) }}
|
|
{% endblock %}
|