Add UngleichTextSection
This commit is contained in:
parent
14bbfe901d
commit
e9142b17ae
1 changed files with 6 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
from cms.models.pluginmodel import CMSPlugin
|
||||
from django.db import models
|
||||
from djangocms_text_ckeditor.fields import HTMLField
|
||||
from filer.fields.image import FilerImageField
|
||||
|
||||
|
||||
|
@ -15,3 +16,8 @@ class UngelichPicture(CMSPlugin):
|
|||
|
||||
class UngelichContactUsSection(CMSPlugin):
|
||||
email = models.EmailField(max_length=200)
|
||||
|
||||
|
||||
class UngelichTextSection(CMSPlugin):
|
||||
title = models.CharField(max_length=200)
|
||||
description = HTMLField()
|
||||
|
|
Loading…
Reference in a new issue