diff --git a/backend/root/management/commands/seed_scripts/recruitment_admissions.py b/backend/root/management/commands/seed_scripts/recruitment_admissions.py index ac4358ad6..aeefc1b91 100644 --- a/backend/root/management/commands/seed_scripts/recruitment_admissions.py +++ b/backend/root/management/commands/seed_scripts/recruitment_admissions.py @@ -8,7 +8,7 @@ 'admission_text': 'This is the admission text', 'applicant_priority': 0, 'recruiter_priority': 0, - 'recruiter_status': 0 + 'recruiter_status': 0, } diff --git a/backend/samfundet/models/recruitment.py b/backend/samfundet/models/recruitment.py index 40868bccf..691ae2b46 100644 --- a/backend/samfundet/models/recruitment.py +++ b/backend/samfundet/models/recruitment.py @@ -88,7 +88,7 @@ class RecruitmentPosition(models.Model): tags = models.CharField(max_length=100, help_text='Tags for the position') # TODO: Implement interviewer functionality - interviewers = models.ManyToManyField(to=User, help_text='Interviewers for the position', blank=True, related_name='interviews') + interviewers = models.ManyToManyField(to=User, help_text='Interviewers for the position', blank=True, related_name='interviewers') def __str__(self) -> str: return f'Position: {self.name_en} in {self.recruitment}' @@ -158,4 +158,3 @@ class Interview(models.Model): related_name='interviews', ) notes = models.TextField(help_text='Notes for the interview') -