diff options
author | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2012-02-17 17:26:59 (GMT) |
---|---|---|
committer | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2012-02-17 17:26:59 (GMT) |
commit | 3abb85cea4d9d73722feabcf43b34fc5140e62ef (patch) | |
tree | a50691d23d6b8195175c6cbf1c28ea1a9e72de50 /program | |
parent | 428cff5822194f2d934bc1892dc46d63f33c99b1 (diff) |
made Show description nullable.
Diffstat (limited to 'program')
-rw-r--r-- | program/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |