* 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
56 lines
1.7 KiB
Plaintext
56 lines
1.7 KiB
Plaintext
{% extends '../requests_new.html.to' %}
|
|
|
|
{% block form %}
|
|
|
|
{% autoescape None %}
|
|
{% if f.errors %}
|
|
<b class="usa-input-error-message">There were some errors, see below.</b>
|
|
{% end %}
|
|
|
|
<h2 id="primary-poc">Primary Government/Military <br> Point of Contact (POC)</h2>
|
|
<p>Please designate a Primary Point of Contact that will be responsible for owning the workspace in the JEDI Cloud.</p>
|
|
<p>The Point of Contact will become the primary owner of the <em>workspace</em> created to use the JEDI Cloud. As a workspace owner, this person will have the ability to:
|
|
<ul>
|
|
<li>Create multiple application stacks and environments in the workspace to access the commercial cloud service provider portal</li>
|
|
<li>Add and manage users in the workspace</li>
|
|
<li>View the budget and billing history related to this workspace</li>
|
|
<li>Manage access to the Cloud Service Provider's Console</li>
|
|
<li>Transfer Workspace ownership to another person</li>
|
|
</ul>
|
|
<em>This POC may be you.</em>
|
|
</p>
|
|
|
|
{{ f.fname_poc.label }}
|
|
{{ f.fname_poc(placeholder="First name") }}
|
|
{% for e in f.fname_poc.errors %}
|
|
<div class="usa-input-error-message">
|
|
{{ e }}
|
|
</div>
|
|
{% end %}
|
|
|
|
{{ f.lname_poc.label }}
|
|
{{ f.lname_poc(placeholder="Last name") }}
|
|
{% for e in f.lname_poc.errors %}
|
|
<div class="usa-input-error-message">
|
|
{{ e }}
|
|
</div>
|
|
{% end %}
|
|
|
|
{{ f.email_poc.label }}
|
|
{{ f.email_poc(placeholder="jane@mail.mil") }}
|
|
{% for e in f.email_poc.errors %}
|
|
<div class="usa-input-error-message">
|
|
{{ e }}
|
|
</div>
|
|
{% end %}
|
|
|
|
{{ f.dodid_poc.label }}
|
|
{{ f.dodid_poc(placeholder="10-digit number on the back of the CAC") }}
|
|
{% for e in f.dodid_poc.errors %}
|
|
<div class="usa-input-error-message">
|
|
{{ e }}
|
|
</div>
|
|
{% end %}
|
|
|
|
{% end %}
|