{% 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 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', fragment="fragments/pending_financial_verification.html") }} {% endif %} {% if pending_ccpo_approval %} {{ Alert('Request submitted. Approval pending.', fragment="fragments/pending_ccpo_approval_alert.html") }} {% endif %}
3
Pending Requests
2,456
Completed Requests This Year
234
Denied Requests
{% 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 %}