{% extends 'admin/layout.html.twig' %} {% block title %}Список доступных Setting{% endblock %} {% block body %} {% include 'admin/setting/_page_header.html.twig' with { 'title': 'Список доступных Setting', 'pretitle': 'Управление Setting', 'actions': [] } %} {{ form_start(form) }} {% for context in form.settings %}
{{ form_label(context) }}
{% for setting in context %} {{ form_widget(setting) }} {% endfor %}
{% endfor %}
{{ form_widget(form.submit) }}
{{ form_end(form) }} {% endblock %}