{% 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 %}

Scope (Statement of Work) {{ TOEditLink() }}

{{ task_order.scope or RequiredLabel() }}

Period of Performance length {{ TOEditLink(screen=2) }}

{{ task_order.performance_length or RequiredLabel() }}

Total funding requested {{ TOEditLink(screen=2) }}

{{ task_order.budget }}

Generated Documents


Invite Signatories/Collaborators

Financial Oversight

{% if task_order.ko_first_name %} {{ task_order.ko_first_name }} {{ task_order.ko_last_name }} {% else %} {{ RequiredLabel() }} {% endif %} (Contracting Officer)

{% if task_order.ko_first_name %} {{ task_order.cor_first_name }} {{ task_order.cor_last_name }} {% else %} {{ RequiredLabel() }} {% endif %} (Contracting Officer Representative)

Invite?
Security Officer

{% if task_order.so_first_name %} {{ task_order.so_first_name }} {{ task_order.so_last_name }} {% else %} {{ RequiredLabel() }} {% endif %} (Security Officer)

{% endblock %} {% block next %}
{% endblock %} {% block form_action %}
{% endblock %}