{% 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 Your Task Order Info {% 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 %}

What are you building {{ TOEditLink(screen=1) }}

Portfolio

{{ task_order.portfolio_name or RequiredLabel() }}

DoD Component

{{ task_order.defense_component or RequiredLabel() }}

Scope (Statement of Work)

{{ task_order.scope or RequiredLabel() }}


Reporting {{ TOEditLink(screen=1) }}

App Migration

{{ task_order.app_migration_description or RequiredLabel() }}

Native Apps

{{ task_order.native_apps_description or RequiredLabel() }}

Project Complextiy

{% if task_order.complexity %} {% else %}

{{ RequiredLabel() }}

{% endif %}

Development Team

{% if task_order.dev_team %} {% else %}

{{ RequiredLabel() }}

{% endif %}

Team Experience

{{ task_order.team_experience_description or RequiredLabel() }}


Funding {{ TOEditLink(screen=2) }}

Period of Performance length

{{ task_order.performance_length_description or RequiredLabel() }}

{{ Icon('download') }} View Usasge Estimate

Task Order Value

{{ '${:,.2f}'.format(task_order.budget) }}

CLIN #1 Unclassified Cloud

{{ '${:,.2f}'.format(task_order.clin_01) }}

CLIN #2 Classified Cloud
(Available soon)

CLIN #3 Unclassified Cloud

{{ '${:,.2f}'.format(task_order.clin_03) }}

CLIN #4 Classified Cloud
(Available soon)

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