bedrock/mozorg/migrations/0003_leadershippage.py [75:104]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                                            ),
                                                                        ),
                                                                        (
                                                                            "headshot",
                                                                            wagtail.blocks.StructBlock(
                                                                                [
                                                                                    (
                                                                                        "image",
                                                                                        wagtail.images.blocks.ImageChooserBlock(
                                                                                            help_text="A headshot image of the person."
                                                                                        ),
                                                                                    ),
                                                                                    (
                                                                                        "image_alt_text",
                                                                                        wagtail.blocks.CharBlock(
                                                                                            char_max_length=255,
                                                                                            help_text="Alt text for the headshot image.",
                                                                                        ),
                                                                                    ),
                                                                                    (
                                                                                        "photos_link",
                                                                                        wagtail.blocks.URLBlock(
                                                                                            char_max_length=255,
                                                                                            help_text="External link to a .zip file of photos of the person.",  # noqa E501
                                                                                            required=False,
                                                                                        ),
                                                                                    ),
                                                                                ]
                                                                            ),
                                                                        ),
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



bedrock/mozorg/migrations/0005_alter_leadershippage_leadership_sections.py [61:90]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                                    ),
                                                                ),
                                                                (
                                                                    "headshot",
                                                                    wagtail.blocks.StructBlock(
                                                                        [
                                                                            (
                                                                                "image",
                                                                                wagtail.images.blocks.ImageChooserBlock(
                                                                                    help_text="A headshot image of the person."
                                                                                ),
                                                                            ),
                                                                            (
                                                                                "image_alt_text",
                                                                                wagtail.blocks.CharBlock(
                                                                                    char_max_length=255,
                                                                                    help_text="Alt text for the headshot image.",
                                                                                ),
                                                                            ),
                                                                            (
                                                                                "photos_link",
                                                                                wagtail.blocks.URLBlock(
                                                                                    char_max_length=255,
                                                                                    help_text="External link to a .zip file of photos of the person.",
                                                                                    required=False,
                                                                                ),
                                                                            ),
                                                                        ]
                                                                    ),
                                                                ),
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



