From d4b094162270489d958e5ca8fe831c8067c93e16 Mon Sep 17 00:00:00 2001 From: Andrew Croce Date: Tue, 2 Oct 2018 08:31:37 -0400 Subject: [PATCH] Only display info alert if there arent errors or extended form info to show --- templates/requests/financial_verification.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/requests/financial_verification.html b/templates/requests/financial_verification.html index 66a5afa2..a48725d7 100644 --- a/templates/requests/financial_verification.html +++ b/templates/requests/financial_verification.html @@ -9,7 +9,7 @@ {% include 'requests/review_menu.html' %} -{% if request.is_pending_financial_verification %} +{% if request.is_pending_financial_verification and not f.errors and not extended %} {{ Alert('Pending Financial Verification', fragment="fragments/pending_financial_verification.html") }} {% endif %}