Browse Source

Fix default day choice in Locations

Scot Hacker 8 years ago
parent
commit
84b82f117d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      bakerydemo/locations/models.py

+ 1 - 1
bakerydemo/locations/models.py

@@ -32,7 +32,7 @@ class OperatingHours(models.Model):
     day = models.CharField(
         max_length=4,
         choices=DAY_CHOICES,
-        default='MONDAY'
+        default='MON'
     )
     opening_time = models.TimeField(
         blank=True,