{% extends "portfolios/base.html" %} {% from 'components/date_picker.html' import DatePicker %} {% from 'components/icon.html' import Icon %} {% from 'components/options_input.html' import OptionsInput %} {% from 'components/save_button.html' import SaveButton %} {% from "components/semi_collapsible_text.html" import SemiCollapsibleText %} {% from "components/sticky_cta.html" import StickyCTA %} {% from 'components/text_input.html' import TextInput %} {% from "components/totals_box.html" import TotalsBox %} {% from 'components/upload_input.html' import UploadInput %} {% macro LOAInput() %}
{% endmacro %} {% macro CLINFields(fields, index) %} {% if index != 0 %}
{% endif %}
{{ OptionsInput(fields.jedi_clin_type) }} {{ TextInput(fields.number) }}
Line of accounting (43 characters)
{% for loa in fields.loas %} {{ TextInput(loa, showLabel=False) }} {% endfor %} {{ LOAInput() }} {{ DatePicker(fields.start_date) }} {{ DatePicker(fields.end_date) }} {{ TextInput(fields.obligated_amount, validation='dollars') }}
{% endmacro %} {% block portfolio_content %} {% call StickyCTA(text="Add Funding") %} {{ "common.cancel" | translate }} {% endcall %}
{% include "fragments/flash.html" %} {% if task_order_id %} {% set action = url_for("task_orders.update", portfolio_id=portfolio.id, task_order_id=task_order_id) %} {% else %} {% set action = url_for("task_orders.update", portfolio_id=portfolio.id) %} {% endif %}
{{ form.csrf_token }} {{ SemiCollapsibleText(paragraph="task_orders.new.form_help_text" | translate) }}
Add your task order
{{ TextInput(form.number, validation='taskOrderNumber') }}
Add the summary of cloud funding
Data must match with what is in your uploaded document.
{% for clin in form.clins %} {{ CLINFields(clin, index=loop.index - 1) }} {% endfor %}

CLIN type
Line of accounting (43 characters)
{{ LOAInput() }}
Start of period of performance (PoP)
{{ Icon("ok", classes="icon--green") }}
End of period of performance (PoP)
{{ Icon("ok", classes="icon--green") }}

Upload your supporting documentation
Upload a single PDF containing all relevant information. {{ Icon('help')}}
{{ UploadInput(form.pdf) }}
{{ TotalsBox(task_order=task_order) }}
{% endblock %}