diff --git a/amy/workshops/models.py b/amy/workshops/models.py index ce028d542..3685664e8 100644 --- a/amy/workshops/models.py +++ b/amy/workshops/models.py @@ -1292,8 +1292,8 @@ class Event(AssignmentMixin, RQJobsMixin, models.Model): "happen, but due to some circumstances got cancelled." "", ) - start = models.DateField(null=True, blank=True, help_text=PUBLISHED_HELP_TEXT) - end = models.DateField(null=True, blank=True) + start_date = models.DateField(null=True, blank=True, help_text=PUBLISHED_HELP_TEXT) + end_date = models.DateField(null=True, blank=True) slug = models.SlugField( max_length=STR_LONG, unique=True,