123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- # 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 = [
- ("breads", "0007_alter_breadingredient_options_and_more"),
- ]
- operations = [
- migrations.AlterField(
- model_name="breadpage",
- 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 <h2>Our bread pledge</h2>\n <p>As a bakery, <b>breads</b> have <i>always</i> been in our hearts.\n <a href="https://en.wikipedia.org/wiki/Staple_food">Staple foods</a>\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.</p>\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",
- ),
- ),
- ]
|