{% extends 'base.html.twig' %} {% block stylesheets %} {{ parent() }} {% endblock stylesheets %} {% block body %}
{{ "Edit feed navigation links" | trans }} {# Since the form is not separated into individual groups, this happened #} {{ form_start(edit_feeds) }} {{ form_errors(edit_feeds) }} {% for child in edit_feeds.children %} {% if 'row_url' in child.vars.block_prefixes %}
{{ form_label(child) }} {{ form_widget(child) }} {% elseif 'row_title' in child.vars.block_prefixes %} {{ form_label(child) }} {{ form_widget(child) }} {% elseif 'row_order' in child.vars.block_prefixes %} {{ form_label(child) }} {{ form_widget(child) }} {% elseif 'row_remove' in child.vars.block_prefixes %} {{ form_label(child) }} {{ form_widget(child) }}
{% endif %} {% endfor %} {{ form_end(edit_feeds) }}
{% endblock %}