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

Request submitted!

{% include 'fragments/pending_financial_verification.html' %}
{% endcall %} {% call Modal(name='pendingCCPOApproval', dismissable=True) %}

Financial Verification submitted!

{% include 'fragments/pending_ccpo_approval_modal.html' %}
{% endcall %} {% call Modal(name='pendingCCPOAcceptance', dismissable=True) %}

Request submitted!

{% include 'fragments/pending_ccpo_acceptance_alert.html' %}
{% 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 Cloud workspaces.', sub_message='A JEDI Cloud 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 extended_view %}
{{ kpi_inprogress }}
Requests in progress
{{ kpi_pending }}
Pending CCPO Action
{{ kpi_completed }}
Approved Requests
{% endif %}
{% if extended_view %} {% endif %}
{% if extended_view %} {% endif %} {% if extended_view %} {% endif %}
!{ column.displayName } {{ Icon("caret_down") }} {{ Icon("caret_up") }}
!{ r.name } Action Required !{ r.full_name }!{ dollars(r.annual_usage) } !{ r.status } !{ r.status } !{ r.dod_component }
{% endif %}
{% endblock %}