From c96e80980874ce45d1ffb6748e64a9c9e721e154 Mon Sep 17 00:00:00 2001 From: Tudor Amariei Date: Tue, 3 Dec 2024 13:43:56 +0200 Subject: [PATCH] Hide the old domain from the candidate's field --- backend/hub/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/hub/forms.py b/backend/hub/forms.py index 4916bf0..15efbed 100644 --- a/backend/hub/forms.py +++ b/backend/hub/forms.py @@ -304,7 +304,7 @@ def clean(self): class Meta: model = Candidate - exclude: List[str] = ["initial_org", "status", "status_changed"] + exclude: List[str] = ["initial_org", "status", "status_changed", "old_domain"] widgets: Dict = { "is_proposed": forms.HiddenInput(),