From 36375c749a6ed758eedc026634308679d151b46a Mon Sep 17 00:00:00 2001 From: Horilla Date: Tue, 3 Dec 2024 14:04:10 +0530 Subject: [PATCH] [FIX] RECRUITMENT: Fixed candidate document reupload issue --- recruitment/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recruitment/forms.py b/recruitment/forms.py index f27c02730..405e92555 100644 --- a/recruitment/forms.py +++ b/recruitment/forms.py @@ -1275,7 +1275,7 @@ class CandidateDocumentUpdateForm(ModelForm): class Meta: model = CandidateDocument fields = "__all__" - exclude = ["is_active"] + exclude = ["is_active", "document_request_id"] class CandidateDocumentRejectForm(ModelForm):