68 lines
2.2 KiB
HTML
68 lines
2.2 KiB
HTML
{% extends 'task_orders/_new.html' %}
|
|
|
|
{% from "components/text_input.html" import TextInput %}
|
|
{% from "components/options_input.html" import OptionsInput %}
|
|
{% from "components/date_input.html" import DateInput %}
|
|
|
|
{% block heading %}
|
|
{{ "task_orders.new.funding.section_title" | translate }}
|
|
{% endblock %}
|
|
|
|
{% block form %}
|
|
|
|
<funding inline-template v-bind:initial-data='{{ form.data|tojson }}'>
|
|
<div>
|
|
<!-- Get Funding Section -->
|
|
<h3>{{ "task_orders.new.funding.performance_period_title" | translate }}</h3>
|
|
|
|
{{ "task_orders.new.funding.performance_period_paragraph" | translate | safe }}
|
|
|
|
{{ OptionsInput(form.performance_length) }}
|
|
|
|
<hr>
|
|
<h3>{{ "task_orders.new.funding.estimate_usage_title" | translate }}</h3>
|
|
|
|
{{ "task_orders.new.funding.estimate_usage_paragraph" | translate | safe }}
|
|
|
|
<div class="usa-input">
|
|
{{ form.csp_cost_estimate.label }}
|
|
{{ form.csp_cost_estimate.description }}
|
|
{{ form.csp_cost_estimate }}
|
|
</div>
|
|
|
|
<hr>
|
|
<h3>{{ "task_orders.new.funding.cloud_calculations_title" | translate }}</h3>
|
|
<p>
|
|
{{ "task_orders.new.funding.cloud_calculations_paragraph" | translate }}
|
|
</p>
|
|
|
|
<h4>{{ "task_orders.new.funding.cloud_offerings_title" | translate }}</h4>
|
|
<p>
|
|
{{ "task_orders.new.funding.cloud_offerings_paragraph" | translate }}
|
|
</p>
|
|
|
|
{{ TextInput(form.clin_01, validation='dollars', placeholder="$0.00") }}
|
|
{{ TextInput(form.clin_02, validation='dollars', disabled=(not config.CLASSIFIED)) }}
|
|
|
|
<h4>{{ "task_orders.new.funding.support_assistance_title" | translate }}</h4>
|
|
<p>
|
|
{{ "task_orders.new.funding.support_assistance_paragraph" | translate }}
|
|
</p>
|
|
{{ TextInput(form.clin_03, validation='dollars', tooltip='The cloud support and assistance packages cannot be used as a primary development resource.', placeholder="$0.00") }}
|
|
{{ TextInput(form.clin_04, validation='dollars', tooltip='The cloud support and assistance packages cannot be used as a primary development resource.', disabled=(not config.CLASSIFIED)) }}
|
|
</div>
|
|
</funding>
|
|
|
|
{% endblock %}
|
|
|
|
{% block next %}
|
|
<div class="row">
|
|
<div class="col col--grow">
|
|
<p>{{ "task_orders.new.funding.total" | translate }}<br><span id="to-target"></span></p>
|
|
</div>
|
|
<div class="col col--grow">
|
|
{{ super() }}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|