bedrock/mozorg/migrations/0003_leadershippage.py [121:172]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                                                ],
                                                                                help_text="A biography limited to a few short paragraphs. Links and formatting are supported.",  # noqa E501
                                                                                required=False,
                                                                            ),
                                                                        ),
                                                                        (
                                                                            "external_links",
                                                                            wagtail.blocks.ListBlock(
                                                                                wagtail.blocks.StructBlock(
                                                                                    [
                                                                                        (
                                                                                            "url",
                                                                                            wagtail.blocks.URLBlock(
                                                                                                char_max_length=255,
                                                                                                help_text="Link to the person's website or social media account.",  # noqa E501
                                                                                                required=False,
                                                                                            ),
                                                                                        ),
                                                                                        (
                                                                                            "type",
                                                                                            wagtail.blocks.ChoiceBlock(
                                                                                                choices=[
                                                                                                    ("url mastodon", "Mastodon"),
                                                                                                    ("url twitter", "Twitter"),
                                                                                                    ("url website", "Website"),
                                                                                                ],
                                                                                                help_text="Selects a visual icon type for the link.",
                                                                                                required=False,
                                                                                            ),
                                                                                        ),
                                                                                        (
                                                                                            "text",
                                                                                            wagtail.blocks.CharBlock(
                                                                                                char_max_length=255,
                                                                                                help_text="Text to display for the link.",
                                                                                                required=False,
                                                                                            ),
                                                                                        ),
                                                                                    ]
                                                                                ),
                                                                                max_num=5,
                                                                                min_num=0,
                                                                            ),
                                                                        ),
                                                                    ]
                                                                ),
                                                                min_num=1,
                                                            ),
                                                        ),
                                                    ]
                                                ),
                                                min_num=1,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



bedrock/mozorg/migrations/0004_alter_leadershippage_leadership_sections.py [106:157]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                                        ],
                                                                        help_text="A biography limited to a few short paragraphs. Links and formatting are supported.",  # noqa E501
                                                                        required=False,
                                                                    ),
                                                                ),
                                                                (
                                                                    "external_links",
                                                                    wagtail.blocks.ListBlock(
                                                                        wagtail.blocks.StructBlock(
                                                                            [
                                                                                (
                                                                                    "url",
                                                                                    wagtail.blocks.URLBlock(
                                                                                        char_max_length=255,
                                                                                        help_text="Link to the person's website or social media account.",  # noqa E501
                                                                                        required=False,
                                                                                    ),
                                                                                ),
                                                                                (
                                                                                    "type",
                                                                                    wagtail.blocks.ChoiceBlock(
                                                                                        choices=[
                                                                                            ("url mastodon", "Mastodon"),
                                                                                            ("url twitter", "Twitter"),
                                                                                            ("url website", "Website"),
                                                                                        ],
                                                                                        help_text="Selects a visual icon type for the link.",
                                                                                        required=False,
                                                                                    ),
                                                                                ),
                                                                                (
                                                                                    "text",
                                                                                    wagtail.blocks.CharBlock(
                                                                                        char_max_length=255,
                                                                                        help_text="Text to display for the link.",
                                                                                        required=False,
                                                                                    ),
                                                                                ),
                                                                            ]
                                                                        ),
                                                                        max_num=5,
                                                                        min_num=0,
                                                                    ),
                                                                ),
                                                            ]
                                                        ),
                                                        min_num=1,
                                                    ),
                                                ),
                                            ]
                                        ),
                                        min_num=1,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



