{% extends "::base.html.twig" %} {% form_theme form 'AlsuiteAssetsBundle:Form:collection-theme.html.twig' %} {% block title 'Report Actual Activity Indicator Quantities' %} {% block content %} {% if level is null %} {{ include(workplan_links, {'show_search': false}, with_context = false) }} {% endif %}
Report Actual Activity Indicator Quantities
{{ tactic }}
{{ 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 An Activity 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.indicator) }} {{ form_row(form.actualQty) }}
{% endmacro %}