summaryrefslogtreecommitdiff
path: root/program/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'program/models.py')
-rw-r--r--program/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/program/models.py b/program/models.py
index 2818c5a..0b78347 100644
--- a/program/models.py
+++ b/program/models.py
@@ -88,6 +88,7 @@ class Show(models.Model):
name = models.CharField(_("Name"), max_length=255)
slug = models.CharField(_("Slug"), max_length=255, unique=True)
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"))
email = models.EmailField(_("E-Mail"), blank=True, null=True)