From 3abb85cea4d9d73722feabcf43b34fc5140e62ef Mon Sep 17 00:00:00 2001 From: Ernesto Rico-Schmidt Date: Fri, 17 Feb 2012 18:26:59 +0100 Subject: made Show description nullable. diff --git a/program/models.py b/program/models.py index 9197837..e053cf4 100644 --- a/program/models.py +++ b/program/models.py @@ -90,7 +90,7 @@ class Show(models.Model): image = models.ImageField(_("Image"), blank=True, null=True, upload_to='show_images') image_enabled = models.BooleanField(_("show Image"), default=True ) short_description = models.CharField(_("Short description"), max_length=64) - description = tinymce_models.HTMLField(_("Description")) + description = tinymce_models.HTMLField(_("Description"), blank=True, null=True) email = models.EmailField(_("E-Mail"), blank=True, null=True) website = models.URLField(_("Website"), blank=True, null=True) cba_series_id = models.IntegerField(_("CBA series ID"), blank=True, null=True) -- cgit v0.10.2