{% macro RequiredLabel() -%} Response Required {%- endmacro %} {% extends 'requests_new.html' %} {% from "components/alert.html" import Alert %} {% from "components/text_input.html" import TextInput %} {% from "components/icon.html" import Icon %} {% block subtitle %}

Review & Submit

{% endblock %} {% block form_action %}
{% endblock %} {% block form %}

Before you can submit your request, please take a moment to review the information entered in the form. You may make changes by clicking the edit link on each section. When all information looks right, go ahead and submit.

{% if f.errors or not can_submit %} {{ Alert('Please complete all sections', message="

In order to submit your JEDI Cloud request, you'll need to complete all required sections of this form without error. Missing or invalid fields are noted below.

", level='error' ) }} {% endif %}

Details of Use {{ Icon('edit') }} Edit this section

DoD Component
{% if data['details_of_use']['dod_component'] %} {{ data['details_of_use']['dod_component'] | getOptionLabel(service_branches) }} {% else %} {{ RequiredLabel() }} {% endif %}
JEDI Usage
{{ data['details_of_use']['jedi_usage'] or RequiredLabel() }}
Number of software systems
{% if data['details_of_use']['num_software_systems'] %} {{ data['details_of_use']['num_software_systems'] | readableInteger }} {% else %} {{ RequiredLabel() }} {% endif %}
JEDI Migration
{{ data['details_of_use']['jedi_migration'] or RequiredLabel() }}
{% if data['details_of_use']['jedi_migration'] == 'yes' %}
Rationalization of Software Systems
{{ data['details_of_use']['rationalization_software_systems'] or RequiredLabel() }}
Technical Support Team
{{ data['details_of_use']['technical_support_team'] or RequiredLabel() }}
{% if data['details_of_use']['technical_support_team'] == 'yes' %}
Organization Providing Assistance
{% if data['details_of_use']['organization_providing_assistance'] %} {{ data['details_of_use']['organization_providing_assistance'] | getOptionLabel(assistance_org_types) }} {% else %} {{ RequiredLabel() }} {% endif %}
{% endif %}
Engineering Assessment
{{ data['details_of_use']['engineering_assessment'] or RequiredLabel() }}
Data Transfers
{% if data['details_of_use']['data_transfers'] %} {{ data['details_of_use']['data_transfers'] | getOptionLabel(data_transfer_amounts) }} {% else %} {{ RequiredLabel() }} {% endif %}
Expected Completion Date
{% if data['details_of_use']['expected_completion_date'] %} {{ data['details_of_use']['expected_completion_date'] | getOptionLabel(completion_date_ranges) }} {% else %} {{ RequiredLabel() }} {% endif %}
{% else %}
Cloud Native
{{ data['details_of_use']['cloud_native'] or RequiredLabel() }}
{% endif %}
Estimated Monthly Spend
{% if data['details_of_use']['estimated_monthly_spend'] %} {{ data['details_of_use']['estimated_monthly_spend'] | dollars }} {% else %} {{ RequiredLabel() }} {% endif %}
{% if jedi_request and jedi_request.annual_spend > annual_spend_threshold %}
Number of User Sessions
{% if data['details_of_use']['number_user_sessions'] %} {{ data['details_of_use']['number_user_sessions'] | readableInteger }} {% else %} {{ RequiredLabel() }} {% endif %}
Average Daily Traffic (Number of Requests)
{% if data['details_of_use']['average_daily_traffic'] %} {{ data['details_of_use']['average_daily_traffic'] | readableInteger }} {% else %} {{ RequiredLabel() }} {% endif %}
Average Daily Traffic (GB)
{% if data['details_of_use']['average_daily_traffic_gb'] %} {{ data['details_of_use']['average_daily_traffic_gb'] | readableInteger }} GB {% else %} {{ RequiredLabel() }} {% endif %}
{% endif %}
Total Spend
{% if data['details_of_use']['dollar_value'] %} {{ data['details_of_use']['dollar_value'] | dollars }} {% else %} {{ RequiredLabel() }} {% endif %}
Start Date
{{ data['details_of_use']['start_date'] or RequiredLabel() }}

Information About You {{ Icon('edit') }} Edit this section

First Name
{{ data['information_about_you']['fname_request'] or RequiredLabel() }}
Last Name
{{ data['information_about_you']['lname_request'] or RequiredLabel() }}
Email Address
{{ data['information_about_you']['email_request'] or RequiredLabel() }}
Phone Number
{% if data['information_about_you']['phone_number'] %} {{ data['information_about_you']['phone_number'] | usPhone }} {% else %} {{ RequiredLabel() }} {% endif %}
Service Branch or Agency
{% if data['information_about_you']['service_branch'] %} {{ data['information_about_you']['service_branch'] | getOptionLabel(service_branches) }} {% else %} {{ RequiredLabel() }} {% endif %}
Citizenship
{{ data['information_about_you']['citizenship'] or RequiredLabel() }}
Designation of Person
{% if data['information_about_you']['designation'] %} {{ data['information_about_you']['designation'] | capitalize }} {% else %} {{ RequiredLabel() }} {% endif %}
Latest Information Assurance (IA) Training completion date
{{ data['information_about_you']['date_latest_training'] or RequiredLabel() }}

Primary Point of Contact {{ Icon('edit') }} Edit this section

POC First Name
{{ data['primary_poc']['fname_poc'] or RequiredLabel() }}
POC Last Name
{{ data['primary_poc']['lname_poc'] or RequiredLabel() }}
POC Email Address
{{ data['primary_poc']['email_poc'] or RequiredLabel() }}
DOD ID
{{ data['primary_poc']['dodid_poc'] or RequiredLabel() }}
{% endblock %} {% block next %}
{% endblock %}