Begin adding read-only fields to review screen

This commit is contained in:
Luis Cielak 2018-07-30 09:59:47 -04:00
parent 217450a15a
commit bb92ed9cb5

View File

@ -19,120 +19,62 @@
{{ data['details_of_use']['dod_component'] }}
{{ data['details_of_use']['fname_request'] }}
{{ data['details_of_use']['lname_request'] }}
{{ data['details_of_use']['email_request'] }}
{{ data['details_of_use']['phone_number'] }}
{{ data['details_of_use']['service_branch'] }}
{{ data['details_of_use']['citizenship'] }}
{{ data['details_of_use']['designation'] }}
{{ data['details_of_use']['date_latest_training'] }}
<br><br><br><br>
<h3>Details of Use <a href="{{ reverse_url('request_form_update', 1, request_id) }}">Edit</a></h3>
<h4>Overall Request Details</h4>
<label>What is the total estimated dollar value of the cloud resources you are requesting using the JEDI CSP Calculator? </label>
<b>{{ data['details_of_use']['dollar_value'] }}</b>
<label>DoD Component</label>
{{data['details_of_use']['dod_component']}}
<label>Please estimate the number of applications that might be supported by this request</label>
<b>{{ data['details_of_use']['num_applications'] }}</b>
<label>JEDI Usage</label>
{{data['details_of_use']['jedi_usage']}}
<label>Number of software systems</label>
{{data['details_of_use']['num_software_systems']}}
<label>JEDI Migration</label>
{{data['details_of_use']['jedi_migration']}}
<label>Rationalization of Software Systems</label>
{{data['details_of_use']['rationalization_software_systems']}}
<label>Technical Support Team</label>
{{data['details_of_use']['technical_support_team']}}
<label>Organization Providing Assistance</label>
{{data['details_of_use']['organization_providing_assistance']}}
<label>Engineering Assessment</label>
{{data['details_of_use']['engineering_assessment']}}
<label>Data Transfers</label>
{{data['details_of_use']['data_transfers']}}
<label>Expected Completion Date</label>
{{data['details_of_use']['expected_completion_date']}}
<label>Cloud Native</label>
{{data['details_of_use']['cloud_native']}}
<label>Estimated Monthly Spend</label>
{{data['details_of_use']['estimated_monthly_spend']}}
<label>Total Spend</label>
{{data['details_of_use']['total_spend']}}
<label>Number of User Sessions</label>
{{data['details_of_use']['number_user_sessions']}}
<label>Average Daily Traffic</label>
{{data['details_of_use']['average_daily_traffic']}}
<label>Start Date</label>
<b>{{ data['details_of_use']['date_start'] }}</b>
{{data['details_of_use']['start_date']}}
<label>Please briefly describe how your team is expecting to use the JEDI Cloud</label>
<b>{{ data['details_of_use']['app_description'] }}</b>
<label>What organizations are supported by these applications?</label>
<b>{{ data['details_of_use']['supported_organizations'] }}</b>
<h4>Cloud Resources</h4>
<label>Total Number of vCPU cores</label>
<b>{{ data['details_of_use']['total_cores'] }}</b>
<label>Total RAM</label>
<b>{{ data['details_of_use']['total_ram'] }}</b>
<label>Total object storage</label>
<b>{{ data['details_of_use']['total_object_storage'] }}</b>
<label>Total server storage</label>
<b>{{ data['details_of_use']['total_server_storage'] }}</b>
<h4>Support Staff</h4>
<label>Do you have a contractor to advise and assist you with using cloud services?</label>
<b>{{ data['details_of_use']['has_contractor_advisor'] }}</b>
<label>Are you using the JEDI Cloud to migrate existing applications?</label>
<b>{{ data['details_of_use']['is_migrating_application'] }}</b>
<label>Please describe the organizations that are supporting you, include both government and contractor resources</label>
<b>{{ data['details_of_use']['supporting_organization'] }}</b>
<label>Do you have a migration office that you're working with to migrate to the cloud?</label>
<b>{{ data['details_of_use']['has_migration_office'] }}</b>
<label>Please describe the organizations that are supporting you, include both government and contractor resources.</label>
<b>{{ data['details_of_use']['supporting_organization'] }}</b>
<br><br><hr>
<h3>Information About You <a href="{{ reverse_url('request_form_update', 2, request_id) }}">Edit</a></h3>
<label>First Name</label>
<b>{{ data['information_about_you']['fname_request'] }}</b>
<label>Last Name</label>
<b>{{ data['information_about_you']['lname_request'] }}</b>
<label>Email (associated with your CAC)</label>
<b>{{ data['information_about_you']['email_request'] }}</b>
<label>Phone Number</label>
<b>{{ data['information_about_you']['phone_number'] }}</b>
<label>Service Branch or Agency</label>
<b>{{ data['information_about_you']['service_branch'] }}</b>
<label>Citizenship</label>
<b>{{ data['information_about_you']['citizenship'] }}</b>
<label>Designation of Person</label>
<b>{{ data['information_about_you']['designation'] }}</b>
<label>Latest Information Assurance (IA) Training completion date</label>
<b>{{ data['information_about_you']['date_latest_training'] }}</b>
<br><br><hr>
<h3>Primary Government/Military Point of Contact (POC) <a href="{{ reverse_url('request_form_update', 3, request_id) }}">Edit</a></h3>
<br>
<label>POC First Name</label>
<b>{{ data['primary_poc']['fname_poc']}}</b>
<label>POC Last Name</label>
<b>{{ data['primary_poc']['lname_poc']}}</b>
<label>POC Email (associated with CAC)</label>
<b>{{ data['primary_poc']['email_poc']}} </b>
<label>DOD ID</label>
<b>{{ data['primary_poc']['dodid_poc']}}</b>
<br><br>
{% end %}