55 lines
2.2 KiB
HTML
55 lines
2.2 KiB
HTML
{% extends 'requests_new.html' %}
|
||
|
||
{% from "components/alert.html" import Alert %}
|
||
{% from "components/text_input.html" import TextInput %}
|
||
{% from "components/options_input.html" import OptionsInput %}
|
||
|
||
{% block subtitle %}
|
||
<h2>Details of Use</h2>
|
||
{% endblock %}
|
||
|
||
{% block form %}
|
||
|
||
{% if f.errors %}
|
||
{{ Alert('There were some errors',
|
||
message="<p>Please see below.</p>",
|
||
level='error'
|
||
) }}
|
||
{% endif %}
|
||
|
||
<details-of-use inline-template v-bind:initial-data='{{ f.data }}'>
|
||
<div>
|
||
|
||
<p>We’d like to know a little about how you plan to use JEDI Cloud services to process your request. Please answer the following questions to the best of your ability. Note that the CCPO does not directly help with migrating systems to JEDI Cloud. These questions are for learning about your cloud readiness and financial usage of the JEDI Cloud; your estimates will not be used for any department level reporting.</p>
|
||
<p><em>All fields are required, unless specified optional.</em></p>
|
||
|
||
<h2>General</h2>
|
||
{{ OptionsInput(f.dod_component) }}
|
||
{{ TextInput(f.jedi_usage, paragraph=True, placeholder="e.g. We are migrating XYZ application to the cloud so that...") }}
|
||
|
||
<h2>Cloud Readiness</h2>
|
||
{{ TextInput(f.num_software_systems, validation='integer') }}
|
||
{{ OptionsInput(f.jedi_migration) }}
|
||
<template v-if='isJediMigration' v-cloak>
|
||
{{ OptionsInput(f.rationalization_software_systems) }}
|
||
{{ OptionsInput(f.technical_support_team) }}
|
||
{{ OptionsInput(f.organization_providing_assistance) }}
|
||
{{ OptionsInput(f.engineering_assessment) }}
|
||
{{ OptionsInput(f.data_transfers) }}
|
||
{{ OptionsInput(f.expected_completion_date) }}
|
||
{{ OptionsInput(f.cloud_native) }}
|
||
</template>
|
||
|
||
<h2>Financial Usage</h2>
|
||
{{ TextInput(f.estimated_monthly_spend, validation='dollars') }}
|
||
<p>So this means you are spending approximately <b>$!{ annualSpend }</b> annually</p>
|
||
{{ TextInput(f.dollar_value, validation='dollars') }}
|
||
{{ TextInput(f.number_user_sessions, validation='integer') }}
|
||
{{ TextInput(f.average_daily_traffic, placeholder='Gigabytes per day', validation='gigabytes') }}
|
||
{{ TextInput(f.start_date, validation='date', placeholder='MM / DD / YYYY') }}
|
||
|
||
</div>
|
||
</details-of-use>
|
||
|
||
{% endblock %}
|