diff --git a/bakerydemo/base/migrations/0025_homepage_featured_help_text.py b/bakerydemo/base/migrations/0025_homepage_featured_help_text.py index 1d8c8f5e5..917601996 100644 --- a/bakerydemo/base/migrations/0025_homepage_featured_help_text.py +++ b/bakerydemo/base/migrations/0025_homepage_featured_help_text.py @@ -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, ), ), @@ -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, ), ), @@ -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, ), ), diff --git a/bakerydemo/base/models.py b/bakerydemo/base/models.py index dfd73147c..ae0b12cb6 100644 --- a/bakerydemo/base/models.py +++ b/bakerydemo/base/models.py @@ -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", @@ -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", @@ -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",