{% 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!

{% include 'fragments/pending_financial_verification.html' %}
Close
{% endcall %} {% call Modal(name='pendingCCPOApproval', dismissable=True) %} {% include 'fragments/pending_ccpo_approval_modal.html' %}
Close
{% endcall %} {% if num_action_required %} {% set title -%} Action required on {{ num_action_required }} requests. {%- endset %} {{ Alert (title)}} {% endif %} {% if not requests %} {{ EmptyState( 'You currently have no JEDI workspaces.', sub_message='A JEDI Workspace is where you manage your projects and control user access to those projects.', action_label='Create a new JEDI Cloud Request', action_href=url_for('requests.requests_form_new', screen=1), icon='document' ) }} {% else %} {% if pending_financial_verification %} {{ Alert('Pending Financial Verification', fragment="fragments/pending_financial_verification.html") }} {% endif %} {% if pending_ccpo_approval %} {{ Alert('Request submitted. Approval pending.', fragment="fragments/pending_ccpo_approval_alert.html") }} {% endif %} {% if extended_view %}
{{ kpi_inprogress }}
In Progress
{{ kpi_pending }}
Pending CCPO Action
{{ kpi_completed }}
Completed (Overall)
{% endif %}
{% if extended_view %} {% endif %}
{% if extended_view %} {% endif %} {% for r in requests %} {% if extended_view %} {% endif %} {% endfor %}
JEDI Cloud Request ID Date Request SubmittedRequester Reason FlaggedProjected Annual Usage ($) Request Status
{{ r['order_id'] }} {% if r.action_required %}Action Required{% endif %} {{ r.last_submission_timestamp }}{{ r['full_name'] }} {{ r['annual_usage'] | dollars }} {% if r.status == 'Approved' %} {{ r.status }} {% else %} {{ r.status }} {% endif %}
{% endif %} {% endblock %}