{% extends "base.html" %} {% from "components/alert.html" import Alert %} {% block content %}
{% if jedi_request.is_pending_ccpo_acceptance %} {{ Alert('Request submitted. Approval pending.', fragment="fragments/pending_ccpo_acceptance_alert.html") }} {% elif jedi_request.is_pending_ccpo_approval %} {{ Alert('Request submitted. Approval pending.', fragment="fragments/pending_ccpo_approval_modal.html") }} {% elif requires_fv_action %} {% include 'requests/review_menu.html' %} {{ Alert('Pending Financial Verification', fragment="fragments/pending_financial_verification.html") }} {% endif %}

Request Details

Request: {{ jedi_request.displayname }}

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