{% extends 'task_orders/_new.html' %}
{% from "components/edit_link.html" import EditLink %}
{% from "components/required_label.html" import RequiredLabel %}
{% from "components/icon.html" import Icon %}
{% block heading %}
Review & Download
{% endblock %}
{% block form %}
{% macro TOEditLink(screen=1) %}
{% if task_order %}
{{ EditLink(url_for("task_orders.new", screen=screen, task_order_id=task_order.id)) }}
{% else %}
{{ EditLink(url_for("task_orders.new", screen=screen)) }}
{% endif %}
{% endmacro %}
{{ task_order.scope or RequiredLabel() }}
Scope (Statement of Work) {{ TOEditLink() }}
Period of Performance length {{ TOEditLink(screen=2) }}
{{ task_order.performance_length or RequiredLabel() }}
Total funding requested {{ TOEditLink(screen=2) }}
{{ task_order.budget }}