mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-19 08:44:24 +00:00
31 lines
1.1 KiB
Twig
31 lines
1.1 KiB
Twig
{% extends '@ChillMain/CRUD/_new_content.html.twig' %}
|
|
|
|
{% block content_form_actions_back %}
|
|
<li class="cancel">
|
|
<a class="sc-button bt-cancel" href="{{ chill_return_path_or('chill_crud_'~crud_name~'_index', { 'person_id': person.id }) }}">
|
|
{{ 'Cancel'|trans }}
|
|
</a>
|
|
</li>
|
|
{% endblock %}
|
|
{% block content_form_actions_save_and_close %}
|
|
<li class="">
|
|
<button type="submit" name="submit" value="save-and-close" class="sc-button bt-create">
|
|
{{ 'crud.new.save_and_close'|trans }}
|
|
</button>
|
|
</li>
|
|
{% endblock %}
|
|
{% block content_form_actions_save_and_show %}
|
|
<li class="">
|
|
<button type="submit" name="submit" value="save-and-show" class="sc-button bt-create">
|
|
{{ 'crud.new.save_and_show'|trans }}
|
|
</button>
|
|
</li>
|
|
{% endblock %}
|
|
{% block content_form_actions_save_and_new %}
|
|
<li class="">
|
|
<button type="submit" name="submit" value="save-and-new" class="sc-button bt-create">
|
|
{{ 'crud.new.save_and_new'|trans }}
|
|
</button>
|
|
</li>
|
|
{% endblock %}
|