{% extends "::base.html.twig" %} {% form_theme form 'AlsuiteAssetsBundle:Form:collection-theme.html.twig' %} {% block title 'Edit Requisition Amounts Spent' %} {% block content %} {{ include(workplan_links, {'show_search': false}, with_context = false) }}
Edit Requisition Amounts Spent
{{ include(mini_tactic, {'tactic': tactic}, with_context = false) }}
Requisition Items
{{ form_start(form) }}
{% for line in form.reqnLines %} {% if not line.isAccountedFor.vars.value %} {{ _self.widget_prototype(line) }} {% endif %} {% endfor %}
{{ form_widget(form.save) }}
{{ form_end(form) }}
{% endblock %} {% macro widget_prototype(widget) %} {% set form = widget %} {% set name = widget.vars.full_name %}
Item{{ form.itemDetails.vars.value }}
Amount Released{{ form.amount.vars.value|number_format(2) }}
{{ form_row(form.amountSpent) }}
{% endmacro %}