From 9fd0444cc733ed216bdac8268d919297863f28da Mon Sep 17 00:00:00 2001 From: Dominik George <nik@naturalnet.de> Date: Sat, 7 Sep 2019 16:00:59 +0200 Subject: [PATCH] =?UTF-8?q?Rename=20canceled=E2=86=92cancelled.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- biscuit/apps/chronos/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biscuit/apps/chronos/models.py b/biscuit/apps/chronos/models.py index fedde9f2..559343e9 100644 --- a/biscuit/apps/chronos/models.py +++ b/biscuit/apps/chronos/models.py @@ -119,7 +119,7 @@ class LessonSubstitution(SchoolRelated): related_name='lesson_substitutions') room = models.ForeignKey('Room', models.CASCADE, null=True) - canceled = models.BooleanField(default=False) + cancelled = models.BooleanField(default=False) class Meta: unique_together = [['school', 'lesson_period', 'week']] -- GitLab