Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Migration(migrations.Migration):
name="featured_section_1_title",
field=models.CharField(
blank=True,
help_text="Title to display above the featured section 1",
help_text="Heading for the first featured section",
max_length=255,
),
),
Expand All @@ -24,7 +24,7 @@ class Migration(migrations.Migration):
name="featured_section_2_title",
field=models.CharField(
blank=True,
help_text="Title to display above the featured section 2",
help_text="Heading for the second featured section",
max_length=255,
),
),
Expand All @@ -33,7 +33,7 @@ class Migration(migrations.Migration):
name="featured_section_3_title",
field=models.CharField(
blank=True,
help_text="Title to display above the featured section 3",
help_text="Heading for the third featured section",
max_length=255,
),
),
Expand Down
6 changes: 3 additions & 3 deletions bakerydemo/base/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ class HomePage(Page):
featured_section_1_title = models.CharField(
blank=True,
max_length=255,
help_text="Title to display above the featured section 1",
help_text="Heading for the first featured section",
)
featured_section_1 = models.ForeignKey(
"wagtailcore.Page",
Expand All @@ -344,7 +344,7 @@ class HomePage(Page):
featured_section_2_title = models.CharField(
blank=True,
max_length=255,
help_text="Title to display above the featured section 2",
help_text="Heading for the second featured section",
)
featured_section_2 = models.ForeignKey(
"wagtailcore.Page",
Expand All @@ -360,7 +360,7 @@ class HomePage(Page):
featured_section_3_title = models.CharField(
blank=True,
max_length=255,
help_text="Title to display above the featured section 3",
help_text="Heading for the third featured section",
)
featured_section_3 = models.ForeignKey(
"wagtailcore.Page",
Expand Down