We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ref: #1212 (comment)
So instead of
recruitmentApplicant.recruiter_status == 0 &&
We should have something like
recruitmentApplicant.recruiter_status == RECRUITMENT_STATUS_NOT_SET &&
Constants are already defined in backend, need to bring them to the frontend:
class RecruitmentPriorityChoices(models.IntegerChoices): NOT_SET = 0, _('Not Set') RESERVE = 1, _('Reserve') WANTED = 2, _('Wanted') NOT_WANTED = 3, _('Not Wanted') class RecruitmentStatusChoices(models.IntegerChoices): NOT_SET = 0, _('Not Set') CALLED_AND_ACCEPTED = 1, _('Called and Accepted') CALLED_AND_REJECTED = 2, _('Called and Rejected') REJECTION = 3, _('Rejection') AUTOMATIC_REJECTION = 4, _('Automatic Rejection')
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Ref: #1212 (comment)
So instead of
We should have something like
Constants are already defined in backend, need to bring them to the frontend:
The text was updated successfully, but these errors were encountered: