mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
* reset admin vertical menu custom styles * disable icons in admin vertical menu * fix main content positioning in admin section * fix table appearance in admin crud template * new scope/center form: move submit button in record_action sticky area * edit scope/center form: move submit button in record_action sticky area * improve homogeneity in admin index pages: centers/scopes/users/jobs * remove centered div old tags
38 lines
1.6 KiB
Twig
38 lines
1.6 KiB
Twig
|
|
{% block crud_content_header %}
|
|
<h1>{{ ('crud.'~crud_name~'.title_delete')|trans({ '%as_string%': entity|chill_entity_render_string }) }}</h1>
|
|
{% endblock crud_content_header %}
|
|
|
|
<p class="message-confirm">{{ ('crud.'~crud_name~'.confirm_message_delete')|trans({ '%as_string%': entity|chill_entity_render_string }) }}</p>
|
|
|
|
{{ form_start(form) }}
|
|
|
|
<ul class="record_actions">
|
|
{% block content_form_actions_back %}
|
|
<li class="cancel">
|
|
<a class="btn btn-cancel" href="{{ chill_return_path_or('chill_crud_'~crud_name~'_index') }}">
|
|
{{ 'Cancel'|trans }}
|
|
</a>
|
|
</li>
|
|
{% endblock %}
|
|
{% block content_form_actions_before %}{% endblock %}
|
|
{% block content_form_actions_view %}
|
|
{% if is_granted(chill_crud_config('role', crud_name, 'view'), entity) %}
|
|
<li class="">
|
|
<a class="btn btn-show" href="{{ chill_return_path_or('chill_crud_'~crud_name~'_view', { 'id': entity.id }) }}">
|
|
{{ 'crud.edit.back_to_view'|trans }}
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% block content_form_actions_confirm_delete %}
|
|
<li>
|
|
<button type="submit" class="btn btn-delete" value="delete-and-close">{{ ('crud.'~crud_name~'.button_delete')|trans }}</button>
|
|
</li>
|
|
{% endblock content_form_actions_confirm_delete %}
|
|
{% block content_form_actions_after %}{% endblock %}
|
|
</ul>
|
|
|
|
{{ form_end(form) }}
|
|
|