{% extends "::base.html.twig" %} {% form_theme form 'AlsuiteAssetsBundle:Form:collection-theme.html.twig' %} {% block title 'Create Output Indicators' %} {% block content %}
Create Output Indicators
{{ form_start(form) }}
{% for indicator in form.indicators %} {% if indicator.vars.value.id == null %} {{ _self.widget_prototype(indicator, 'Remove') }} {% endif %} {% endfor %}
{{ form_widget(form.save) }} Add Indicator
{{ form_end(form) }}
{% endblock %} {% macro widget_prototype(widget, remove_text) %} {% set form = widget %} {% set name = widget.vars.full_name %}
{{ remove_text }}
{{ form_row(form.name) }}
{% endmacro %}