|
@@ -159,14 +159,126 @@ class HomePage(Page):
|
|
|
related_name='+',
|
|
|
help_text='Homepage image'
|
|
|
)
|
|
|
+ hero_text = models.CharField(
|
|
|
+ max_length=255,
|
|
|
+ help_text='Write an introduction for the bakery'
|
|
|
+ )
|
|
|
+ hero_cta = models.CharField(
|
|
|
+ verbose_name='Hero CTA',
|
|
|
+ max_length=255,
|
|
|
+ help_text='Text to display on CTA'
|
|
|
+ )
|
|
|
+ hero_cta_link = models.ForeignKey(
|
|
|
+ 'wagtailcore.Page',
|
|
|
+ null=True,
|
|
|
+ blank=True,
|
|
|
+ on_delete=models.SET_NULL,
|
|
|
+ related_name='+',
|
|
|
+ verbose_name='Hero CTA link',
|
|
|
+ help_text='Choose a page to link to for the CTA'
|
|
|
+ )
|
|
|
|
|
|
body = StreamField(
|
|
|
- BaseStreamBlock(), verbose_name="Home page detail", blank=True
|
|
|
+ BaseStreamBlock(), verbose_name="Home content block", blank=True
|
|
|
+ )
|
|
|
+
|
|
|
+ promo_image = models.ForeignKey(
|
|
|
+ 'wagtailimages.Image',
|
|
|
+ null=True,
|
|
|
+ blank=True,
|
|
|
+ on_delete=models.SET_NULL,
|
|
|
+ related_name='+',
|
|
|
+ help_text='Promo image'
|
|
|
+ )
|
|
|
+ promo_title = models.CharField(
|
|
|
+ null=True,
|
|
|
+ blank=True,
|
|
|
+ max_length=255,
|
|
|
+ help_text='Title to display above the promo copy'
|
|
|
+ )
|
|
|
+ promo_text = RichTextField(
|
|
|
+ null=True,
|
|
|
+ blank=True,
|
|
|
+ help_text='Write some promotional copy'
|
|
|
+ )
|
|
|
+
|
|
|
+ featured_section_1_title = models.CharField(
|
|
|
+ null=True,
|
|
|
+ blank=True,
|
|
|
+ max_length=255,
|
|
|
+ help_text='Title to display above the promo copy'
|
|
|
+ )
|
|
|
+ featured_section_1 = models.ForeignKey(
|
|
|
+ 'wagtailcore.Page',
|
|
|
+ null=True,
|
|
|
+ blank=True,
|
|
|
+ on_delete=models.SET_NULL,
|
|
|
+ related_name='+',
|
|
|
+ help_text='First featured section for the homepage. Will display up to three child items.',
|
|
|
+ verbose_name='Featured section 1'
|
|
|
+ )
|
|
|
+
|
|
|
+ featured_section_2_title = models.CharField(
|
|
|
+ null=True,
|
|
|
+ blank=True,
|
|
|
+ max_length=255,
|
|
|
+ help_text='Title to display above the promo copy'
|
|
|
+ )
|
|
|
+ featured_section_2 = models.ForeignKey(
|
|
|
+ 'wagtailcore.Page',
|
|
|
+ null=True,
|
|
|
+ blank=True,
|
|
|
+ on_delete=models.SET_NULL,
|
|
|
+ related_name='+',
|
|
|
+ help_text='Second featured section for the homepage. Will display up to three child items.',
|
|
|
+ verbose_name='Featured section 2'
|
|
|
+ )
|
|
|
+
|
|
|
+ featured_section_3_title = models.CharField(
|
|
|
+ null=True,
|
|
|
+ blank=True,
|
|
|
+ max_length=255,
|
|
|
+ help_text='Title to display above the promo copy'
|
|
|
+ )
|
|
|
+ featured_section_3 = models.ForeignKey(
|
|
|
+ 'wagtailcore.Page',
|
|
|
+ null=True,
|
|
|
+ blank=True,
|
|
|
+ on_delete=models.SET_NULL,
|
|
|
+ related_name='+',
|
|
|
+ help_text='Third featured section for the homepage. Will display up to six child items.',
|
|
|
+ verbose_name='Featured section 3'
|
|
|
)
|
|
|
|
|
|
content_panels = Page.content_panels + [
|
|
|
- ImageChooserPanel('image'),
|
|
|
+ MultiFieldPanel([
|
|
|
+ ImageChooserPanel('image'),
|
|
|
+ FieldPanel('hero_text', classname="full"),
|
|
|
+ MultiFieldPanel([
|
|
|
+ FieldPanel('hero_cta'),
|
|
|
+ PageChooserPanel('hero_cta_link'),
|
|
|
+ ])
|
|
|
+ ], heading="Hero section"),
|
|
|
+ MultiFieldPanel([
|
|
|
+ ImageChooserPanel('promo_image'),
|
|
|
+ FieldPanel('promo_title'),
|
|
|
+ FieldPanel('promo_text'),
|
|
|
+ ], heading="Promo section"),
|
|
|
StreamFieldPanel('body'),
|
|
|
+ MultiFieldPanel([
|
|
|
+ MultiFieldPanel([
|
|
|
+ FieldPanel('featured_section_1_title'),
|
|
|
+ PageChooserPanel('featured_section_1'),
|
|
|
+ ]),
|
|
|
+ MultiFieldPanel([
|
|
|
+ FieldPanel('featured_section_2_title'),
|
|
|
+ PageChooserPanel('featured_section_2'),
|
|
|
+ ]),
|
|
|
+ MultiFieldPanel([
|
|
|
+ FieldPanel('featured_section_3_title'),
|
|
|
+ PageChooserPanel('featured_section_3'),
|
|
|
+ ])
|
|
|
+ ], heading="Featured homepage sections", classname="collapsible")
|
|
|
]
|
|
|
|
|
|
def __str__(self):
|