{% extends '@TigrisBase/admin/layout.html.twig' %} {% block title %}{{ 'menu.configs'|trans|parse_icons }}{% endblock %} {% block main %} {% embed '@TigrisBase/decorators/_form.html.twig' with {'class': ''} %} {% block body %}
{% set i = 0 %} {% for name, item in form %} {% if name not in ['_token', 'actions'] %}
{{ form_row(item) }}
{% set i = i + 1 %} {% endif %} {% endfor %}
{% endblock %} {% endembed %} {% endblock %}