bedrock/mozorg/migrations/0003_leadershippage.py [39:73]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        [
                            (
                                "section",
                                wagtail.blocks.StructBlock(
                                    [
                                        (
                                            "title",
                                            wagtail.blocks.CharBlock(
                                                blank=True,
                                                help_text="Title for the section of the page e.g. 'Mozilla Corporation' or 'Mozilla Foundation.",
                                                max_length=255,
                                                null=True,
                                            ),
                                        ),
                                        (
                                            "leadership_group",
                                            wagtail.blocks.ListBlock(
                                                wagtail.blocks.StructBlock(
                                                    [
                                                        (
                                                            "title",
                                                            wagtail.blocks.CharBlock(
                                                                char_max_length=255,
                                                                help_text="Leadership group title, e.g. 'Executive Steering Committee' or 'Senior Leadership'.",  # noqa E501
                                                                required=False,
                                                            ),
                                                        ),
                                                        (
                                                            "leaders",
                                                            wagtail.blocks.ListBlock(
                                                                wagtail.blocks.StructBlock(
                                                                    [
                                                                        (
                                                                            "name",
                                                                            wagtail.blocks.CharBlock(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



bedrock/mozorg/migrations/0005_alter_leadershippage_leadership_sections.py [24:58]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                [
                    (
                        "section",
                        wagtail.blocks.StructBlock(
                            [
                                (
                                    "title",
                                    wagtail.blocks.CharBlock(
                                        blank=True,
                                        help_text="Title for the section of the page e.g. 'Mozilla Corporation' or 'Mozilla Foundation.",
                                        max_length=255,
                                        null=True,
                                    ),
                                ),
                                (
                                    "leadership_group",
                                    wagtail.blocks.ListBlock(
                                        wagtail.blocks.StructBlock(
                                            [
                                                (
                                                    "title",
                                                    wagtail.blocks.CharBlock(
                                                        char_max_length=255,
                                                        help_text="Leadership group title, e.g. 'Executive Steering Committee' or 'Senior Leadership'.",  # noqa: E501
                                                        required=False,
                                                    ),
                                                ),
                                                (
                                                    "leaders",
                                                    wagtail.blocks.ListBlock(
                                                        wagtail.blocks.StructBlock(
                                                            [
                                                                (
                                                                    "name",
                                                                    wagtail.blocks.CharBlock(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



