Move pending CCPO approval status to request

This commit is contained in:
richard-dds 2018-09-14 13:32:50 -04:00
parent 7b2f897c9d
commit 8355446965
3 changed files with 7 additions and 1 deletions

View File

@ -144,6 +144,7 @@ def view_request_details(request_id=None):
status=request.status_displayname,
pending_review=request.is_pending_ccpo_action,
pending_ccpo_acceptance=request.is_pending_ccpo_acceptance,
pending_ccpo_approval=request.is_pending_ccpo_approval,
financial_verification=request.is_pending_financial_verification
or request.is_pending_financial_verification_changes,
financial_review=financial_review,

View File

@ -10,7 +10,12 @@
{% endif %}
{% if pending_ccpo_acceptance %}
{{ Alert('Request submitted. Approval pending.', fragment="fragments/pending_ccpo_approval_alert.html") }}
{{ 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 %}
{% if pending_review %}