35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% from "components/alert.html" import Alert %}
|
|
|
|
{% block content %}
|
|
<div class="col">
|
|
|
|
{% if financial_verification %}
|
|
{% include 'requests/review_menu.html' %}
|
|
{% endif %}
|
|
|
|
{% if pending_ccpo_acceptance %}
|
|
{{ Alert('Request submitted. Approval pending.', fragment="fragments/pending_ccpo_acceptance_alert.html") }}
|
|
{% elif 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 %}
|
|
{% endif %}
|
|
|
|
<div class="panel">
|
|
<div class="panel__heading">
|
|
<h1>Request Details</h1><br/>
|
|
<h2>#{{ request_id }} <span class="label label--info">{{ status }}</span></h2>
|
|
</div>
|
|
|
|
<div class="panel__content">
|
|
|
|
{% include "requests/_review.html" %}
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|