1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {#
- This file is part of the Sonata package.
- (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
- For the full copyright and license information, please view the LICENSE
- file that was distributed with this source code.
- #}
- {% extends base_template %}
- {% block actions %}
- <li>{% include 'SonataAdminBundle:Button:list_button.html.twig' %}</li>
- <li>{% include 'SonataAdminBundle:Button:create_button.html.twig' %}</li>
- {% endblock %}
- {% block tab_menu %}{{ knp_menu_render(admin.sidemenu(action), {'currentClass' : 'active', 'template': 'SonataAdminBundle:Core:tab_menu_template.html.twig'}, 'twig') }}{% endblock %}
- {% block content %}
- <div class="sonata-ba-delete">
- <h1>{% trans with {'%action%': action_label} from 'SonataAdminBundle' %}title_batch_confirmation{% endtrans %}</h1>
- {% if data.all_elements %}
- {{ 'message_batch_all_confirmation'|trans({}, 'SonataAdminBundle') }}
- {% else %}
- {% transchoice data.idx|length with {'%count%': data.idx|length} from 'SonataAdminBundle' %}message_batch_confirmation{% endtranschoice %}
- {% endif %}
- <div class="well well-small form-actions">
- <form action="{{ admin.generateUrl('batch', {'filter': admin.filterParameters}) }}" method="POST" >
- <input type="hidden" name="confirmation" value="ok">
- <input type="hidden" name="data" value="{{ data|json_encode }}">
- <input type="hidden" name="_sonata_csrf_token" value="{{ csrf_token }}">
- <div style="display: none">
- {{ form_rest(form) }}
- </div>
- <button type="submit" class="btn btn-danger">{{ 'btn_execute_batch_action'|trans({}, 'SonataAdminBundle') }}</button>
- {% if admin.hasRoute('list') and admin.isGranted('LIST') %}
- {{ 'delete_or'|trans({}, 'SonataAdminBundle') }}
- <a class="btn btn-success" href="{{ admin.generateUrl('list') }}">
- <i class="glyphicon glyphicon-th-list"></i> {{ 'link_action_list'|trans({}, 'SonataAdminBundle') }}
- </a>
- {% endif %}
- </form>
- </div>
- </div>
- {% endblock %}
|