{# This file is part of the Sonata package. (c) Thomas Rabaix For the full copyright and license information, please view the LICENSE file that was distributed with this source code. #} {% extends 'SonataPageBundle:BlockAdmin:edit.html.twig' %} {% block block %}
{{ form_label(form.settings.action) }}
{{ form_widget(form.settings.action, {'attr': {'class' : 'title'}}) }} {{ form_errors(form.settings.action) }}

{{ 'title_parameters'|trans({}, 'SonataPageBundle') }}

{% for parameter in form.settings.parameters %} {% endfor %}
{{ form_label(parameter) }} {{ form_widget(parameter, {'attr': {'class' : 'title'}}) }} {{ form_errors(parameter) }}
{% endblock %}