From 307fdd4f7b84b427e378c65dc02c663ac82f2b58 Mon Sep 17 00:00:00 2001 From: Evert Date: Thu, 28 Dec 2017 17:03:16 +0200 Subject: [PATCH] Make custom CSS nullable --- LandingPage/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/LandingPage/models.py b/LandingPage/models.py index 58ab57e..b0f6a08 100644 --- a/LandingPage/models.py +++ b/LandingPage/models.py @@ -60,6 +60,7 @@ class Show(TimestampedModel): css = models.FileField( storage=show_static_storage, upload_to=name_css, + null=True, help_text="The CSS stylesheet applied to this show's page", verbose_name="Custom Style" )