{% 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 %} {% set dod_component_choices = { "null": "Select an option", "us_air_force": "US Air Force", "us_army": "US Army", "us_navy": "US Navy", "us_marine_corps": "US Marine Corps", "joint_chiefs_of_staff": "Joint Chiefs of Staff" } %} {% set organization_providing_assistance_choices = { "in_house_staff": "In-house staff", "contractor": "Contractor", "other_dod_organization": "Other DoD organization", "none": "None" } %} {% 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'] %} {{ dod_component_choices[data['details_of_use']['dod_component']] }} {% 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'] %} {{ organization_providing_assistance_choices[data['details_of_use']['organization_providing_assistance']] }} {% 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'] | upper | replace("_"," ")}} {% else %} {{ RequiredLabel() }} {% endif %}
Expected Completion Date
{% if data['details_of_use']['expected_completion_date'] %} {{ data['details_of_use']['expected_completion_date'] | replace("_"," ")}} {% 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'] | USDollars }} {% else %} {{ RequiredLabel() }} {% endif %}
{% if (data['details_of_use']['estimated_monthly_spend'] and ((data['details_of_use']['estimated_monthly_spend'] * 12) > 1000000)) %}
Total Spend
{% if data['details_of_use']['dollar_value'] %} {{ data['details_of_use']['dollar_value'] | USDollars }} {% else %} {{ RequiredLabel() }} {% endif %}
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 %}
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
{{ data['information_about_you']['service_branch'] or RequiredLabel() }}
Citizenship
{{ data['information_about_you']['citizenship'] or RequiredLabel() }}
Designation of Person
{{ data['information_about_you']['designation'] or RequiredLabel() }}
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 %}