Skip to content

Commit

Permalink
Change direction of acceptance date
Browse files Browse the repository at this point in the history
  • Loading branch information
didrikmunther committed Feb 22, 2024
1 parent f64c336 commit 46cc18a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fair/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ class Fair(models.Model):
description = models.TextField(max_length=500, default=default_name)

registration_start_date = models.DateTimeField(null=False, blank=False)
registration_end_date = models.DateTimeField(null=False, blank=False)
registration_acceptance_date = models.DateTimeField(
null=False,
blank=False,
default="2021-01-01 00:00:00+00:00",
help_text="The date when the companies will be able to see if they have been accepted or not.",
)
registration_end_date = models.DateTimeField(null=False, blank=False)
complete_registration_start_date = models.DateTimeField(null=False, blank=False)
complete_registration_close_date = models.DateTimeField(null=False, blank=False)

Expand Down

0 comments on commit 46cc18a

Please sign in to comment.