40 lines
1.2 KiB
HTML
40 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% from "components/alert.html" import Alert %}
|
|
|
|
{% block content %}
|
|
<div class="col">
|
|
|
|
{% 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') %}
|
|
<p>The CCPO will review and respond to your Financial Verification submission in 3 business days. You will be notified via email or phone.</p>
|
|
<p>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.</p>
|
|
{% endcall %}
|
|
|
|
{% elif requires_fv_action %}
|
|
|
|
{{ Alert('Pending Financial Verification', fragment="fragments/pending_financial_verification.html") }}
|
|
{% include 'requests/review_menu.html' %}
|
|
|
|
{% endif %}
|
|
|
|
<div class="panel">
|
|
<div class="panel__heading">
|
|
<h1>Request Details</h1><br/>
|
|
<h2>#{{ request.id }} <span class="label label--info">{{ request.status_displayname }}</span></h2>
|
|
</div>
|
|
|
|
<div class="panel__content">
|
|
|
|
{% include "requests/_review.html" %}
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|