@@ -72,64 +101,111 @@
{% if data['details_of_use']['technical_support_team'] == 'yes' %}
-
Organization Providing Assistance
- {{ data['details_of_use']['organization_providing_assistance'] or RequiredLabel() }}
+
+ {% 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() }}
-
+
+
Engineering Assessment
+ {{ data['details_of_use']['engineering_assessment'] or RequiredLabel() }}
+
-
-
Data Transfers
- {{ data['details_of_use']['data_transfers'] 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
- {{ data['details_of_use']['expected_completion_date'] or RequiredLabel() }}
-
+
+
Expected Completion Date
+
+ {% if data['details_of_use']['expected_completion_date'] %}
+ {{ data['details_of_use']['expected_completion_date'] | replace("_"," ")}}
+ {% else %}
+ {{ RequiredLabel() }}
+ {% endif %}
+
+
- {% else %}
+ {% else %}
-
-
Cloud Native
- {{ data['details_of_use']['cloud_native'] or RequiredLabel() }}
-
+
+
Cloud Native
+ {{ data['details_of_use']['cloud_native'] or RequiredLabel() }}
+
- {% endif %}
+ {% endif %}
Estimated Monthly Spend
- {{ data['details_of_use']['estimated_monthly_spend'] or RequiredLabel() }}
-
-
-
-
Total Spend
- {{ data['details_of_use']['dollar_value'] or RequiredLabel() }}
+
+ {% 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 > 1000000 %}
+
Number of User Sessions
- {{ data['details_of_use']['number_user_sessions'] or RequiredLabel() }}
+
+ {% 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)
- {{ data['details_of_use']['average_daily_traffic'] or RequiredLabel() }}
+
+ {% if data['details_of_use']['average_daily_traffic'] %}
+ {{ data['details_of_use']['average_daily_traffic'] | readableInteger }}
+ {% else %}
+ {{ RequiredLabel() }}
+ {% endif %}
+
Average Daily Traffic (GB)
- {{ data['details_of_use']['average_daily_traffic_gb'] or RequiredLabel() }}
+
+ {% 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
@@ -164,7 +240,13 @@
Phone Number
- {{ data['information_about_you']['phone_number'] or RequiredLabel() }}
+
+ {% if data['information_about_you']['phone_number'] %}
+ {{ data['information_about_you']['phone_number'] | usPhone }}
+ {% else %}
+ {{ RequiredLabel() }}
+ {% endif %}
+
@@ -179,7 +261,13 @@
Designation of Person
- {{ data['information_about_you']['designation'] or RequiredLabel() }}
+
+ {% if data['information_about_you']['designation'] %}
+ {{ data['information_about_you']['designation'] | capitalize }}
+ {% else %}
+ {{ RequiredLabel() }}
+ {% endif %}
+