Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathias-a committed Oct 3, 2023
1 parent a183624 commit ce04d9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'admission_text': 'This is the admission text',
'applicant_priority': 0,
'recruiter_priority': 0,
'recruiter_status': 0
'recruiter_status': 0,
}


Expand Down
3 changes: 1 addition & 2 deletions backend/samfundet/models/recruitment.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}'
Expand Down Expand Up @@ -158,4 +158,3 @@ class Interview(models.Model):
related_name='interviews',
)
notes = models.TextField(help_text='Notes for the interview')

0 comments on commit ce04d9c

Please sign in to comment.