# Generated by Django 5.1.8 on 2025-06-19 11:15 import wagtail.fields from django.db import migrations class Migration(migrations.Migration): dependencies = [ ("locations", "0006_alter_locationoperatinghours_day"), ] operations = [ migrations.AlterField( model_name="locationpage", name="body", field=wagtail.fields.StreamField( [ ("heading_block", 2), ("paragraph_block", 3), ("image_block", 6), ("block_quote", 9), ("embed_block", 10), ], blank=True, block_lookup={ 0: ( "wagtail.blocks.CharBlock", (), {"form_classname": "title", "required": True}, ), 1: ( "wagtail.blocks.ChoiceBlock", [], { "blank": True, "choices": [ ("", "Select a header size"), ("h2", "H2"), ("h3", "H3"), ("h4", "H4"), ], "required": False, }, ), 2: ( "wagtail.blocks.StructBlock", [[("heading_text", 0), ("size", 1)]], {}, ), 3: ( "wagtail.blocks.RichTextBlock", (), { "description": "A rich text paragraph", "icon": "pilcrow", "preview_value": '\n
As a bakery, breads have always been in our hearts.\n Staple foods\n are essential for society, and – bread is the tastiest of all.\n We love to transform batters and doughs into baked goods with a firm\n dry crust and fluffy center.
\n ', "template": "blocks/paragraph_block.html", }, ), 4: ( "wagtail.images.blocks.ImageChooserBlock", (), {"required": True}, ), 5: ("wagtail.blocks.CharBlock", (), {"required": False}), 6: ( "wagtail.blocks.StructBlock", [[("image", 4), ("caption", 5), ("attribution", 5)]], {}, ), 7: ("wagtail.blocks.TextBlock", (), {}), 8: ( "wagtail.blocks.CharBlock", (), {"blank": True, "label": "e.g. Mary Berry", "required": False}, ), 9: ( "wagtail.blocks.StructBlock", [[("text", 7), ("attribute_name", 8)]], {}, ), 10: ( "wagtail.embeds.blocks.EmbedBlock", (), { "description": "An embedded video or other media", "help_text": "Insert an embed URL e.g https://www.youtube.com/watch?v=SGJFWirQ3ks", "icon": "media", "preview_template": "base/preview/static_embed_block.html", "preview_value": "https://www.youtube.com/watch?v=mwrGSfiB1Mg", "template": "blocks/embed_block.html", }, ), }, verbose_name="Page body", ), ), ]