mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-24 03:04:22 +00:00
23 lines
610 B
Twig
23 lines
610 B
Twig
{% extends "@ChillEvent/Admin/index.html.twig" %}
|
|
|
|
{% block admin_content -%}
|
|
|
|
<h1>{{ 'Role creation'|trans }}</h1>
|
|
|
|
{{ form_start(form) }}
|
|
{{ form_row(form.name) }}
|
|
{{ form_row(form.type) }}
|
|
{{ form_row(form.active) }}
|
|
|
|
<ul class="record_actions sticky-form-buttons">
|
|
<li class="cancel">
|
|
<a href="{{ path('chill_event_admin_role') }}" class="btn btn-cancel">{{ 'Back to the list'|trans }}</a>
|
|
</li>
|
|
<li>
|
|
{{ form_row(form.submit, { 'attr': { 'class' : 'btn btn-new' }}) }}
|
|
</li>
|
|
</ul>
|
|
|
|
{{ form_end(form) }}
|
|
{% endblock %}
|