From 0aaa2cc5ec96b8b1e926aa2baebf3d2c0e10d90e Mon Sep 17 00:00:00 2001 From: Frank Duncan Date: Mon, 6 Nov 2023 12:14:52 -0600 Subject: [PATCH] Add "withdrawn" to list of inactive statuses This affected different calculating pages, like the open round percentage completions. Issue #3296 --- hypha/apply/funds/workflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hypha/apply/funds/workflow.py b/hypha/apply/funds/workflow.py index 3a156c7af5..906b6beaa2 100644 --- a/hypha/apply/funds/workflow.py +++ b/hypha/apply/funds/workflow.py @@ -1212,7 +1212,7 @@ def get_stage_change_actions(): active_statuses = [ status for status, _ in PHASES - if "accepted" not in status and "rejected" not in status and "invited" not in status + if "accepted" not in status and "rejected" not in status and "invited" not in status and "withdrawn" not in status ]