From 971730f1cb48d76acfb778ebbce77e890e9544cc Mon Sep 17 00:00:00 2001 From: Evert Date: Thu, 28 Dec 2017 17:20:22 +0200 Subject: [PATCH] Make CSS field actually nullable.. --- LandingPage/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/LandingPage/models.py b/LandingPage/models.py index bc3c64e..e84d98e 100644 --- a/LandingPage/models.py +++ b/LandingPage/models.py @@ -77,6 +77,7 @@ class Show(TimestampedModel): storage=show_static_storage, upload_to=name_css, null=True, + blank=True, help_text="The CSS stylesheet applied to this show's page", verbose_name="Custom Style" )