|
@@ -23,38 +23,6 @@ from wagtail.wagtailsnippets.models import register_snippet
|
|
|
from .blocks import BaseStreamBlock
|
|
|
|
|
|
|
|
|
-class BasePageFieldsMixin(models.Model):
|
|
|
- """
|
|
|
- An abstract base class for common fields
|
|
|
- """
|
|
|
- introduction = models.TextField(
|
|
|
- help_text='Text to describe the page',
|
|
|
- blank=True)
|
|
|
- image = models.ForeignKey(
|
|
|
- 'wagtailimages.Image',
|
|
|
- null=True,
|
|
|
- blank=True,
|
|
|
- on_delete=models.SET_NULL,
|
|
|
- related_name='+',
|
|
|
- help_text='Landscape mode only; horizontal width between 1000px and '
|
|
|
- '3000px.'
|
|
|
- )
|
|
|
- # The StreamField is defined within base/blocks.py
|
|
|
- body = StreamField(
|
|
|
- BaseStreamBlock(), verbose_name="Page body", blank=True
|
|
|
- )
|
|
|
- # The content_panels makes the fields accessible to the editor within the
|
|
|
- # admin area. If you don't include a field here it won't be displayed
|
|
|
- content_panels = Page.content_panels + [
|
|
|
- FieldPanel('introduction', classname="full"),
|
|
|
- ImageChooserPanel('image'),
|
|
|
- StreamFieldPanel('body'),
|
|
|
- ]
|
|
|
-
|
|
|
- class Meta:
|
|
|
- abstract = True
|
|
|
-
|
|
|
-
|
|
|
@register_snippet
|
|
|
class People(ClusterableModel):
|
|
|
"""
|
|
@@ -129,14 +97,31 @@ class FooterText(models.Model):
|
|
|
verbose_name_plural = 'Footer Text'
|
|
|
|
|
|
|
|
|
-class StandardPage(Page, BasePageFieldsMixin):
|
|
|
+class StandardPage(Page):
|
|
|
"""
|
|
|
A generic content page. On this demo site we use it for an about page but
|
|
|
could be used for any type of page content.
|
|
|
"""
|
|
|
|
|
|
- # Inherit the content panels from BasePageFieldsMixin
|
|
|
- content_panels = BasePageFieldsMixin.content_panels + []
|
|
|
+ introduction = models.TextField(
|
|
|
+ help_text='Text to describe the page',
|
|
|
+ blank=True)
|
|
|
+ image = models.ForeignKey(
|
|
|
+ 'wagtailimages.Image',
|
|
|
+ null=True,
|
|
|
+ blank=True,
|
|
|
+ on_delete=models.SET_NULL,
|
|
|
+ related_name='+',
|
|
|
+ help_text='Landscape mode only; horizontal width between 1000px and 3000px.'
|
|
|
+ )
|
|
|
+ body = StreamField(
|
|
|
+ BaseStreamBlock(), verbose_name="Page body", blank=True
|
|
|
+ )
|
|
|
+ content_panels = Page.content_panels + [
|
|
|
+ FieldPanel('introduction', classname="full"),
|
|
|
+ StreamFieldPanel('body'),
|
|
|
+ ImageChooserPanel('image'),
|
|
|
+ ]
|
|
|
|
|
|
|
|
|
class HomePage(Page):
|
|
@@ -270,10 +255,10 @@ class HomePage(Page):
|
|
|
])
|
|
|
], heading="Hero section"),
|
|
|
MultiFieldPanel([
|
|
|
- ImageChooserPanel('promo_image'),
|
|
|
- FieldPanel('promo_title'),
|
|
|
- FieldPanel('promo_text'),
|
|
|
- ], heading="Promo section"),
|
|
|
+ ImageChooserPanel('promo_image'),
|
|
|
+ FieldPanel('promo_title'),
|
|
|
+ FieldPanel('promo_text'),
|
|
|
+ ], heading="Promo section"),
|
|
|
StreamFieldPanel('body'),
|
|
|
MultiFieldPanel([
|
|
|
MultiFieldPanel([
|
|
@@ -295,13 +280,28 @@ class HomePage(Page):
|
|
|
return self.title
|
|
|
|
|
|
|
|
|
-class GalleryPage(BasePageFieldsMixin, Page):
|
|
|
+class GalleryPage(Page):
|
|
|
"""
|
|
|
This is a page to list locations from the selected Collection. We use a Q
|
|
|
object to list any Collection created (/admin/collections/) even if they
|
|
|
contain no items. It's unlikely to be useful for many production settings
|
|
|
but is intended to show the extensibility of aspect of Wagtail
|
|
|
"""
|
|
|
+
|
|
|
+ introduction = models.TextField(
|
|
|
+ help_text='Text to describe the page',
|
|
|
+ blank=True)
|
|
|
+ image = models.ForeignKey(
|
|
|
+ 'wagtailimages.Image',
|
|
|
+ null=True,
|
|
|
+ blank=True,
|
|
|
+ on_delete=models.SET_NULL,
|
|
|
+ related_name='+',
|
|
|
+ help_text='Landscape mode only; horizontal width between 1000px and 3000px.'
|
|
|
+ )
|
|
|
+ body = StreamField(
|
|
|
+ BaseStreamBlock(), verbose_name="Page body", blank=True
|
|
|
+ )
|
|
|
collection = models.ForeignKey(
|
|
|
Collection,
|
|
|
limit_choices_to=~models.Q(name__in=['Root']),
|
|
@@ -311,7 +311,10 @@ class GalleryPage(BasePageFieldsMixin, Page):
|
|
|
help_text='Select the image collection for this gallery.'
|
|
|
)
|
|
|
|
|
|
- content_panels = BasePageFieldsMixin.content_panels + [
|
|
|
+ content_panels = Page.content_panels + [
|
|
|
+ FieldPanel('introduction', classname="full"),
|
|
|
+ StreamFieldPanel('body'),
|
|
|
+ ImageChooserPanel('image'),
|
|
|
FieldPanel('collection'),
|
|
|
]
|
|
|
|