diff --git a/district/models.py b/district/models.py index adc4abe420fcc2d058fd51a4ba0ff70c932061c5..7ee1c6206e54086d292d9e6d721ea0fd00595683 100644 --- a/district/models.py +++ b/district/models.py @@ -125,7 +125,7 @@ class DistrictHomePage(MetadataPageMixin, CalendarMixin, Page): FieldPanel("show_calendar_on_hp"), ] - promote_panels = [ + promote_panels = MetadataPageMixin.promote_panels + [ MultiFieldPanel( [ FieldPanel("facebook"), @@ -133,7 +133,7 @@ class DistrictHomePage(MetadataPageMixin, CalendarMixin, Page): FieldPanel("twitter"), FieldPanel("youtube"), ], - gettext_lazy("Common page configuration"), + gettext_lazy("Social page configuration"), ), ] diff --git a/region/models.py b/region/models.py index fcd921baaf22370cc4bd9d2f4faf5f5c01de89c5..5f81b5725982c0838a9b78c38ba52b368ad9d9f8 100644 --- a/region/models.py +++ b/region/models.py @@ -125,7 +125,7 @@ class RegionHomePage(MetadataPageMixin, CalendarMixin, Page): FieldPanel("show_calendar_on_hp"), ] - promote_panels = [ + promote_panels = MetadataPageMixin.promote_panels + [ MultiFieldPanel( [ FieldPanel("facebook"), @@ -133,7 +133,7 @@ class RegionHomePage(MetadataPageMixin, CalendarMixin, Page): FieldPanel("twitter"), FieldPanel("youtube"), ], - gettext_lazy("Common page configuration"), + gettext_lazy("Social page configuration"), ), ]