{% extends "base.html" %} {% from "components/alert.html" import Alert %} {% block content %}
{% if request.is_pending_ccpo_acceptance %} {{ Alert('Request submitted. Approval pending.', fragment="fragments/pending_ccpo_acceptance_alert.html") }} {% elif request.is_pending_ccpo_approval %} {% call Alert('Pending CCPO Approval') %}

The CCPO will review and respond to your Financial Verification submission in 3 business days. You will be notified via email or phone.

Once the financial verification is approved you will be invited to create your JEDI Workspace and set-up your projects. Click here for more details.

{% endcall %} {% elif requires_fv_action %} {% include 'requests/review_menu.html' %} {{ Alert('Pending Financial Verification', fragment="fragments/pending_financial_verification.html") }} {% endif %}

Request Details

#{{ request.id }} {{ request.status_displayname }}

{% include "requests/_review.html" %}
{% endblock %}