{% extends "base.html" %} {% from "components/alert.html" import Alert %} {% from "components/modal.html" import Modal %} {% from "components/empty_state.html" import EmptyState %} {% block content %} {% call Modal(name='pendingFinancialVerification', dismissable=True) %}

Request submitted!

The next step is to create a Task Order associated with JEDI Cloud. Please contact a Contracting Officer (KO), Contracting Officer Representative (COR), or a Financial Manager to help with this step.

Once the Task Order has been created, you will be asked to provide details about the task order in the Financial Verification step.

Learn more about the JEDI Task Order and the Financial Verification process.

Close
{% endcall %} {% if not requests %} {{ EmptyState( 'There are currently no active requests for you to see.', actionLabel='Create a new JEDI Cloud Request', actionHref=url_for('requests.requests_form_new', screen=1), icon='document' ) }} {% else %} {% if pending_financial_verification %} {{ Alert('Pending Financial Verification', message="

The next step is to create a Task Order associated with JEDI Cloud. Please contact a Contracting Officer (KO), Contracting Officer Representative (COR), or a Financial Manager to help with this step.

Once the Task Order has been created, you will be asked to provide details about the task order in the Financial Verification step.

Learn more about the JEDI Task Order and the Financial Verification process.

" ) }} {% endif %}
{% for r in requests %} {% endif %} {% endfor %}
Order ID Request Date Requester Total Apps Status Actions
{{ r['order_id'] }} {% if r['is_new'] %}New {{ r['date'] }} {{ r['full_name'] }} {{ r['app_count'] }} {{ r['status'] }} Download Approval
{% endif %} {% endblock %}