{% extends "base.html" %} {% from "components.html" import Modal, Alert, EmptyState %} {% block modal %} {% if g.modalOpen %} {% call Modal() %}

Your request is now approved!

Your next step is to create a Task Order (T.O.) associated with JEDI Cloud. Please consult a Contracting Officer (KO) or Contracting Officer Representative (COR) to help with this step.

Once the Task Order (T.O.) has been created, we will need the following details to create your account. These details will help keep your cloud usage in sync with your budget.

{{ Alert("You'll need these details: ", message="

Task Order Number

Contracting Officer: Name, E-mail and Office

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

Your next step is to create a Task Order (T.O.) associated with JEDI Cloud. Please consult a Contracting Officer (KO) or Contracting Officer Representative (COR) to help with this step.

" ) }}
{% 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 %}