Skip to content

Commit 07df1cb

Browse files
author
Arne Tarara - Automated
committed
Merge remote-tracking branch 'upstream/main' into gmt-pinned-versions
2 parents e778004 + fad0a2c commit 07df1cb

File tree

2 files changed

+31
-3
lines changed

2 files changed

+31
-3
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Generated by Django 5.2.3 on 2025-06-27 16:43
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('base', '0024_alter_formpage_body_alter_gallerypage_body_and_more'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='homepage',
15+
name='featured_section_1_title',
16+
field=models.CharField(blank=True, help_text='Title to display above the featured section 1', max_length=255),
17+
),
18+
migrations.AlterField(
19+
model_name='homepage',
20+
name='featured_section_2_title',
21+
field=models.CharField(blank=True, help_text='Title to display above the featured section 2', max_length=255),
22+
),
23+
migrations.AlterField(
24+
model_name='homepage',
25+
name='featured_section_3_title',
26+
field=models.CharField(blank=True, help_text='Title to display above the featured section 3', max_length=255),
27+
),
28+
]

bakerydemo/base/models.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ class HomePage(Page):
326326
# Each list their children items that we access via the children function
327327
# that we define on the individual Page models e.g. BlogIndexPage
328328
featured_section_1_title = models.CharField(
329-
blank=True, max_length=255, help_text="Title to display above the promo copy"
329+
blank=True, max_length=255, help_text="Title to display above the featured section 1"
330330
)
331331
featured_section_1 = models.ForeignKey(
332332
"wagtailcore.Page",
@@ -340,7 +340,7 @@ class HomePage(Page):
340340
)
341341

342342
featured_section_2_title = models.CharField(
343-
blank=True, max_length=255, help_text="Title to display above the promo copy"
343+
blank=True, max_length=255, help_text="Title to display above the featured section 2"
344344
)
345345
featured_section_2 = models.ForeignKey(
346346
"wagtailcore.Page",
@@ -354,7 +354,7 @@ class HomePage(Page):
354354
)
355355

356356
featured_section_3_title = models.CharField(
357-
blank=True, max_length=255, help_text="Title to display above the promo copy"
357+
blank=True, max_length=255, help_text="Title to display above the featured section 3"
358358
)
359359
featured_section_3 = models.ForeignKey(
360360
"wagtailcore.Page",

0 commit comments

Comments
 (0)