From d823b923a2c0b979aac157b9a54e994362cd17fa Mon Sep 17 00:00:00 2001 From: Patrick Smith Date: Fri, 28 Sep 2018 11:17:04 -0400 Subject: [PATCH 1/2] Show modal when submitted request is pending acceptance --- templates/requests/index.html | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/templates/requests/index.html b/templates/requests/index.html index 67df4760..f1098464 100644 --- a/templates/requests/index.html +++ b/templates/requests/index.html @@ -25,6 +25,16 @@ {% endcall %} + {% call Modal(name='pendingCCPOAcceptance', dismissable=True) %} +

Request submitted!

+ + {% include 'fragments/pending_ccpo_acceptance_alert.html' %} + +
+ Close +
+ {% endcall %} + {% if num_action_required %} {% set title -%} Action required on {{ num_action_required }} requests. From 82c5941ab54bb13ff65b19969199e2a64d3f918c Mon Sep 17 00:00:00 2001 From: Patrick Smith Date: Fri, 28 Sep 2018 11:20:17 -0400 Subject: [PATCH 2/2] Add title to fin-ver alert modal --- templates/requests/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/requests/index.html b/templates/requests/index.html index f1098464..8d74d497 100644 --- a/templates/requests/index.html +++ b/templates/requests/index.html @@ -17,6 +17,7 @@ {% endcall %} {% call Modal(name='pendingCCPOApproval', dismissable=True) %} +

Financial Verification submitted!

{% include 'fragments/pending_ccpo_approval_modal.html' %}