Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikskog committed Sep 19, 2024
1 parent 683d148 commit 31e8294
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion apps/careeropportunity/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ class AddCareerOpportunityForm(forms.ModelForm):
required=False,
widget=DatetimePickerInput(),
)
rolling_admission = forms.BooleanField(label="Søknader vurderes fortløpende", required=False)
rolling_admission = forms.BooleanField(
label="Søknader vurderes fortløpende", required=False
)

class Meta:
model = CareerOpportunity
Expand Down
4 changes: 3 additions & 1 deletion apps/careeropportunity/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ class CareerOpportunity(models.Model):
end = models.DateTimeField(_("aktiv til"))
featured = models.BooleanField(_("fremhevet"), default=False, blank=True)
deadline = models.DateTimeField(_("frist"), default=None, null=True, blank=True)
rolling_admission = models.BooleanField(_("Søknader vurderes fortløpende"), default=False, blank=False)
rolling_admission = models.BooleanField(
_("Søknader vurderes fortløpende"), default=False, blank=False
)

JOB_TYPE_CHOICES = (
(1, "Fastjobb"),
Expand Down

0 comments on commit 31e8294

Please sign in to comment.