wagtail/bakerydemo

Help text of featured sections in homepage repeats the same as in Promo title

Opened this issue · 0 comments

In the HomePage model, the help text for the Promo title is repeated in the featured sections.

promo_title = models.CharField(
blank=True, max_length=255, help_text=“Title to display above the promo copy”
)

featured_section_1_title = models.CharField(
blank=True, max_length=255, help_text=“Title to display above the promo copy”
)

featured_section_2_title = models.CharField(
blank=True, max_length=255, help_text=“Title to display above the promo copy”
)

featured_section_3_title = models.CharField(
blank=True, max_length=255, help_text=“Title to display above the promo copy”
)

Maybe it should say "Title to display above the featured section"