diff --git a/caseworker/advice/constants.py b/caseworker/advice/constants.py index 74a48d03de..768ad6019b 100644 --- a/caseworker/advice/constants.py +++ b/caseworker/advice/constants.py @@ -9,6 +9,7 @@ TEAM_DECISION_APPROVED = "has approved" +TEAM_DECISION_APPROVED_F680 = "has approved this F680 application" TEAM_DECISION_APPROVED_REFUSED = "has approved and refused" TEAM_DECISION_PROVISO = "has approved with licence conditions" TEAM_DECISION_REFUSED = "has refused" diff --git a/caseworker/advice/templatetags/advice_tags.py b/caseworker/advice/templatetags/advice_tags.py index 6db1e9e523..39886bfb94 100644 --- a/caseworker/advice/templatetags/advice_tags.py +++ b/caseworker/advice/templatetags/advice_tags.py @@ -220,5 +220,7 @@ def _add_team_decisions(grouped_advice): team_advice["decision"] = constants.TEAM_DECISION_PROVISO elif decisions == {"Refuse"}: team_advice["decision"] = constants.TEAM_DECISION_REFUSED + elif decisions == {"F680"}: + team_advice["decision"] = constants.TEAM_DECISION_APPROVED_F680 else: team_advice["decision"] = constants.TEAM_DECISION_APPROVED_REFUSED