From f17fad813e19d1f94ebb72877e0c796cceb8c233 Mon Sep 17 00:00:00 2001 From: Emilie Date: Wed, 24 Aug 2016 19:05:56 +0200 Subject: [PATCH] rename image type content into page_slider --- app/organization/core/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/organization/core/models.py b/app/organization/core/models.py index 0d5ed6d1..3122be9d 100644 --- a/app/organization/core/models.py +++ b/app/organization/core/models.py @@ -12,7 +12,7 @@ from mezzanine.core.models import Displayable, Slugged, Orderable COLOR_CHOICES = (('black', _('black')), ('yellow', _('yellow')), ('red', _('red'))) ALIGNMENT_CHOICES = (('left', _('left')), ('center', _('center')), ('right', _('right'))) -IMAGE_TYPE_CHOICES = (('logo', _('logo')), ('slider', _('slider')), ('card', _('card')), ('content', _('content'))) +IMAGE_TYPE_CHOICES = (('logo', _('logo')), ('slider', _('slider')), ('card', _('card')), ('page_slider', _('page slider'))) class Description(models.Model): -- 2.39.5