* Implement OrganizationInfo form, add it to the template * Format request_new * Update "Details of Use" section * Refactor request_new * Added some new fields, but form is still WIP * Add details of use fields * Add org info fields * Add some comments * Add Financial Verification and more Details of Use fields * Update some textarea fields to single text field * WIP * Implement OrganizationInfo form, add it to the template * Format request_new * Update "Details of Use" section * Refactor request_new * Added some new fields, but form is still WIP * Add details of use fields * Add org info fields * Add some comments * Add Financial Verification and more Details of Use fields * Update some textarea fields to single text field * Format * Update fields with the correct fieldtypes * Begin updating sidenav changes * Split form into each section * adjust and skip some outdated form validation tests * break request form into multiple form objects * need to send user ID to requests-queue * use DateForm for start date in request * alter request_new handler to pass raw form data to template * change review form * Add KO and COR section titles * Update date input class name * Add a special case for the summary form. We should refactor this * Add read-only fields for review and submit section * Add minimum number validators to request form * Fix formatting * Use html5 datepicker for dates * Fix request form validators * Finish org info form * Finish POC form * Finish financial verification form * Move PE and UII to financial form * Un-skip form validation test
124 lines
4.4 KiB
Plaintext
124 lines
4.4 KiB
Plaintext
{% extends '../requests_new.html.to' %}
|
|
|
|
{% block form %}
|
|
|
|
{% autoescape None %}
|
|
{% if f.errors %}
|
|
<b>There were some errors, see below.</b>
|
|
{% end %}
|
|
|
|
<h2 id="review-submit">Review & Submit</h2>
|
|
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Autem ullam veritatis fuga non repellendus repellat dolorum labore nulla iure aspernatur ipsam recusandae saepe harum iste, dolorem adipisci dolores eum, doloribus?</p>
|
|
|
|
<h3>Details of Use <a href="">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.get('details_of_use', {}).get('dollar_value') }}</b>
|
|
|
|
<label>Please estimate the number of applications that might be supported by this request</label>
|
|
<b>{{ data.get('details_of_use', {}).get('num_applications') }}</b>
|
|
|
|
<label>Start Date</label>
|
|
<b>{{ data.get('details_of_use', {}).get('date_start') }}</b>
|
|
|
|
<label>Please briefly describe how your team is expecting to use the JEDI Cloud</label>
|
|
<b>{{ data.get('details_of_use', {}).get('app_description') }}</b>
|
|
|
|
<label>What organizations are supported by these applications?</label>
|
|
<b>{{ data.get('details_of_use', {}).get('supported_organizations') }}</b>
|
|
|
|
<label>Please enter the Unique Item Identifier (UII)s related to your application(s) if you already have them.</label>
|
|
<b>{{ data.get('details_of_use', {}).get('uii_ids') }}</b>
|
|
|
|
<label>Please provide the Program Element (PE) Numbers related to your request</label>
|
|
<b>{{ data.get('details_of_use', {}).get('pe_id') }}</b>
|
|
|
|
<h4>Cloud Resources</h4>
|
|
|
|
<label>Total Number of vCPU cores</label>
|
|
<b>{{ data.get('details_of_use', {}).get('total_cores') }}</b>
|
|
|
|
<label>Total RAM</label>
|
|
<b>{{ data.get('details_of_use', {}).get('total_ram') }}</b>
|
|
|
|
<label>Total object storage</label>
|
|
<b>{{ data.get('details_of_use', {}).get('total_object_storage') }}</b>
|
|
|
|
<label>Total server storage</label>
|
|
<b>{{ data.get('details_of_use', {}).get('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.get('details_of_use', {}).get('has_contractor_advisor') }}</b>
|
|
|
|
<label>Are you using the JEDI Cloud to migrate existing applications?</label>
|
|
<b>{{ data.get('details_of_use', {}).get('is_migrating_application') }}</b>
|
|
|
|
<label>Please describe the organizations that are supporting you, include both government and contractor resources</label>
|
|
<b>{{ data.get('details_of_use', {}).get('supporting_organization') }}</b>
|
|
|
|
<label>Do you have a migration office that you're working with to migrate to the cloud?</label>
|
|
<b>{{ data.get('details_of_use', {}).get('has_migration_office') }}</b>
|
|
|
|
<label>Please describe the organizations that are supporting you, include both government and contractor resources.</label>
|
|
<b>{{ data.get('details_of_use', {}).get('supporting_organization') }}</b>
|
|
|
|
<br><br><hr>
|
|
|
|
<h3>Information About You <a href="">Edit</a></h3>
|
|
|
|
<label>First Name</label>
|
|
<b>{{ data.get('information_about_you', {}).get('fname_request') }}</b>
|
|
|
|
<label>Last Name</label>
|
|
<b>{{ data.get('information_about_you', {}).get('lname_request') }}</b>
|
|
|
|
<label>Email (associated with your CAC)</label>
|
|
<b>{{ data.get('information_about_you', {}).get('email_request') }}</b>
|
|
|
|
<label>Phone Number</label>
|
|
<b>{{ data.get('information_about_you', {}).get('phone_number') }}</b>
|
|
|
|
<label>Service Branch or Agency</label>
|
|
<b>{{ data.get('information_about_you', {}).get('service_branch') }}</b>
|
|
|
|
<label>Citizenship</label>
|
|
<b>{{ data.get('information_about_you', {}).get('citizenship') }}</b>
|
|
|
|
<label>Designation of Person</label>
|
|
<b>{{ data.get('information_about_you', {}).get('designation') }}</b>
|
|
|
|
<label>Latest Information Assurance (IA) Training completion date</label>
|
|
<b>{{ data.get('information_about_you', {}).get('date_latest_training') }}</b>
|
|
|
|
|
|
<br><br><hr>
|
|
|
|
<h3>Primary Government/Military Point of Contact (POC) <a href="">Edit</a></h3>
|
|
|
|
|
|
|
|
<label>POC First Name</label>
|
|
<b>{{ data.get('primary_poc', {}).get('fname_poc')}}</b>
|
|
|
|
<label>POC Last Name</label>
|
|
<b>{{ data.get('primary_poc', {}).get('lname_poc')}}</b>
|
|
|
|
<label>POC Email (associated with CAC)</label>
|
|
<b>{{ data.get('primary_poc', {}).get('email_poc')}} </b>
|
|
|
|
<label>DOD ID</label>
|
|
<b>{{ data.get('primary_poc', {}).get('dodid_poc')}}</b>
|
|
|
|
|
|
<br><br>
|
|
|
|
{% end %}
|
|
|
|
{% block next %}
|
|
<input type='submit' class='usa-button usa-button-primary' value='Submit' />
|
|
{% end %}
|