[UPDT] RECRUITMENT: Registered RejectedCandidate model class into admin site

This commit is contained in:
Horilla
2025-09-08 15:43:51 +05:30
parent 255dd0ddb4
commit 98e2d0337a
2 changed files with 7 additions and 1 deletions

View File

@@ -703,8 +703,12 @@ class RejectedCandidate(HorillaModel):
],
)
class Meta:
verbose_name = _("Rejected Candidate")
verbose_name_plural = _("Rejected Candidates")
def __str__(self) -> str:
return super().__str__()
return self.candidate_id
class StageFiles(HorillaModel):