1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {% extends 'base.html.twig' %}
- {% block stylesheets %}
- {{ parent() }}
- <link rel="stylesheet" href="{{ asset('assets/default_theme/css/pages/feeds.css') }}" type="text/css">
- {% endblock stylesheets %}
- {% block body %}
- <div class="section-widget">
- <form class="section-form" action="{{ path('edit_feeds') }}" method="post">
- <fieldset>
- <legend class="section-form-legend">{{ "Edit feed navigation links" | trans }}</legend>
- {# Since the form is not separated into individual groups, this happened #}
- {{ form_start(edit_feeds) }}
- {% for child in edit_feeds.children %}
- {% if 'row_url' in child.vars.block_prefixes %}
- <div class="section-widget section-padding">
- {{ 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) }}
- </div>
- {% endif %}
- {% endfor %}
- {{ form_end(edit_feeds) }}
- </fieldset>
- </form>
- </div>
- {% endblock %}
|