From 273f7f23c4eb1c97c49d9f23550e5cf457109b71 Mon Sep 17 00:00:00 2001 From: Julian Dehm Date: Thu, 12 Sep 2024 15:01:24 +0200 Subject: [PATCH] delete a4 tables, organisation models and reset home migrations. run 'python manage.py migrate --fake home zero' and 'python manage.py migrate --fake-initial' to fix the migration state --- euth/contrib/admin.py | 15 - .../migrations/0001_delete_a4_models.py | 37 ++ euth/contrib/migrations/__init__.py | 0 euth/contrib/sitemaps/adhocracy4_sitemap.py | 12 - .../migrations/0007_auto_20240910_1638.py | 27 ++ euth/organisations/models.py | 73 ---- euth_wagtail/settings/base.py | 25 -- euth_wagtail/urls.py | 21 -- home/migrations/0001_initial.py | 329 +++++++++++++++++- home/migrations/0002_create_homepage.py | 45 --- home/migrations/0003_simplepage.py | 44 --- home/migrations/0004_auto_20160128_1034.py | 111 ------ home/migrations/0005_auto_20160128_1406.py | 53 --- home/migrations/0006_auto_20160129_1731.py | 88 ----- home/migrations/0007_auto_20160205_1508.py | 176 ---------- home/migrations/0008_create_menus.py | 30 -- home/migrations/0009_auto_20160208_1401.py | 169 --------- home/migrations/0010_auto_20160704_1313.py | 104 ------ home/migrations/0011_auto_20160830_1316.py | 90 ----- ...12_add_configurable_video_player_iframe.py | 20 -- home/migrations/0013_auto_20161108_1554.py | 54 --- .../0014_rename_fields_for_consistency.py | 24 -- ...anual_index_and_section_page_and_detail.py | 123 ------- .../0016_change_streamfields_for_detail.py | 63 ---- home/migrations/0017_auto_20170206_1103.py | 33 -- ...dd_ukrainian_greek_russian_translations.py | 240 ------------- ...nge_color_coding_for_manual_detail_page.py | 24 -- .../0020_homepage_add_editable_header.py | 64 ---- home/migrations/0021_add_georgian.py | 95 ----- home/migrations/0021_add_view_link_field.py | 24 -- home/migrations/0022_add_macedonian.py | 95 ----- home/migrations/0023_merge.py | 15 - home/migrations/0024_add_maltese.py | 95 ----- .../migrations/0025_make_linkview_nullable.py | 20 -- .../0026_add_subtitle_to_manuals_detail.py | 79 ----- home/migrations/0027_helppages.py | 27 -- .../0028_helppages_example_project.py | 19 - .../0029_add_fields_for_example_projects.py | 55 --- ...0030_drop_russian_ukrainian_and_maltese.py | 206 ----------- .../0031_allow_15_pages_in_pagecollection.py | 51 --- ...2_add_two_more_pages_to_page_collection.py | 26 -- home/migrations/0033_translate_intro.py | 66 ---- .../0034_remove_flashpoll_blueprints.py | 26 -- .../0035_manualssectionpage_document.py | 22 -- .../0036_helppages_communitydebate.py | 20 -- .../0037_remove_homepage_videoplayer_url.py | 17 - ...multi_col_block_bg_col_block_tile_block.py | 219 ------------ .../0039_add_headline_col_and_tile_blocks.py | 219 ------------ .../0040_rm_required_video_headline.py | 119 ------- home/migrations/0041_add_bulgarian.py | 104 ------ home/migrations/0042_add_use_json_field.py | 244 ------------- .../0043_remove_helppages_communitydebate.py | 17 - home/migrations/0044_delete_helppages.py | 16 - home/models/base_pages.py | 5 - 54 files changed, 387 insertions(+), 3608 deletions(-) delete mode 100644 euth/contrib/admin.py create mode 100644 euth/contrib/migrations/0001_delete_a4_models.py create mode 100644 euth/contrib/migrations/__init__.py delete mode 100644 euth/contrib/sitemaps/adhocracy4_sitemap.py create mode 100644 euth/organisations/migrations/0007_auto_20240910_1638.py delete mode 100644 home/migrations/0002_create_homepage.py delete mode 100644 home/migrations/0003_simplepage.py delete mode 100644 home/migrations/0004_auto_20160128_1034.py delete mode 100644 home/migrations/0005_auto_20160128_1406.py delete mode 100644 home/migrations/0006_auto_20160129_1731.py delete mode 100644 home/migrations/0007_auto_20160205_1508.py delete mode 100644 home/migrations/0008_create_menus.py delete mode 100644 home/migrations/0009_auto_20160208_1401.py delete mode 100644 home/migrations/0010_auto_20160704_1313.py delete mode 100644 home/migrations/0011_auto_20160830_1316.py delete mode 100644 home/migrations/0012_add_configurable_video_player_iframe.py delete mode 100644 home/migrations/0013_auto_20161108_1554.py delete mode 100644 home/migrations/0014_rename_fields_for_consistency.py delete mode 100644 home/migrations/0015_add_manual_index_and_section_page_and_detail.py delete mode 100644 home/migrations/0016_change_streamfields_for_detail.py delete mode 100644 home/migrations/0017_auto_20170206_1103.py delete mode 100644 home/migrations/0018_add_ukrainian_greek_russian_translations.py delete mode 100644 home/migrations/0019_change_color_coding_for_manual_detail_page.py delete mode 100644 home/migrations/0020_homepage_add_editable_header.py delete mode 100644 home/migrations/0021_add_georgian.py delete mode 100644 home/migrations/0021_add_view_link_field.py delete mode 100644 home/migrations/0022_add_macedonian.py delete mode 100644 home/migrations/0023_merge.py delete mode 100644 home/migrations/0024_add_maltese.py delete mode 100644 home/migrations/0025_make_linkview_nullable.py delete mode 100644 home/migrations/0026_add_subtitle_to_manuals_detail.py delete mode 100644 home/migrations/0027_helppages.py delete mode 100644 home/migrations/0028_helppages_example_project.py delete mode 100644 home/migrations/0029_add_fields_for_example_projects.py delete mode 100644 home/migrations/0030_drop_russian_ukrainian_and_maltese.py delete mode 100644 home/migrations/0031_allow_15_pages_in_pagecollection.py delete mode 100644 home/migrations/0032_add_two_more_pages_to_page_collection.py delete mode 100644 home/migrations/0033_translate_intro.py delete mode 100644 home/migrations/0034_remove_flashpoll_blueprints.py delete mode 100644 home/migrations/0035_manualssectionpage_document.py delete mode 100644 home/migrations/0036_helppages_communitydebate.py delete mode 100644 home/migrations/0037_remove_homepage_videoplayer_url.py delete mode 100644 home/migrations/0038_add_multi_col_block_bg_col_block_tile_block.py delete mode 100644 home/migrations/0039_add_headline_col_and_tile_blocks.py delete mode 100644 home/migrations/0040_rm_required_video_headline.py delete mode 100644 home/migrations/0041_add_bulgarian.py delete mode 100644 home/migrations/0042_add_use_json_field.py delete mode 100644 home/migrations/0043_remove_helppages_communitydebate.py delete mode 100644 home/migrations/0044_delete_helppages.py diff --git a/euth/contrib/admin.py b/euth/contrib/admin.py deleted file mode 100644 index 355fc8fc4..000000000 --- a/euth/contrib/admin.py +++ /dev/null @@ -1,15 +0,0 @@ -from django.contrib import admin -from django.urls import reverse - -from adhocracy4.modules import models -from adhocracy4.modules.admin import ModuleAdmin as A4ModuleAdmin - - -class ModuleAdmin(A4ModuleAdmin): - - def view_on_site(self, obj): - return reverse('project-detail', args=[str(obj.project.slug)]) - - -admin.site.unregister(models.Module) -admin.site.register(models.Module, ModuleAdmin) diff --git a/euth/contrib/migrations/0001_delete_a4_models.py b/euth/contrib/migrations/0001_delete_a4_models.py new file mode 100644 index 000000000..ca1f929a8 --- /dev/null +++ b/euth/contrib/migrations/0001_delete_a4_models.py @@ -0,0 +1,37 @@ +# Generated by Django 3.2.20 on 2024-09-10 15:03 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ] + + operations = [ + migrations.RunSQL( + sql=[ + "DROP TABLE IF EXISTS background_task", + "DROP TABLE IF EXISTS background_task_completedtask", + "DROP TABLE IF EXISTS a4categories_category", + "DROP TABLE IF EXISTS a4comments_comment", + "DROP TABLE IF EXISTS a4maps_areasettings", + "DROP TABLE IF EXISTS a4phases_phase", + "DROP TABLE IF EXISTS a4polls_answer", + "DROP TABLE IF EXISTS a4polls_othervote", + "DROP TABLE IF EXISTS a4polls_vote", + "DROP TABLE IF EXISTS a4polls_choice", + "DROP TABLE IF EXISTS a4polls_question", + "DROP TABLE IF EXISTS a4polls_poll", + "DROP TABLE IF EXISTS a4modules_item", + "DROP TABLE IF EXISTS a4modules_module", + "DROP TABLE IF EXISTS a4projects_project_moderators", + "DROP TABLE IF EXISTS a4projects_project_participants", + "DROP TABLE IF EXISTS a4projects_project", + "DROP TABLE IF EXISTS a4ratings_rating", + "DROP TABLE IF EXISTS a4reports_report", + "DROP TABLE IF EXISTS a4administrative_districts_administrativedistrict", + ], + reverse_sql=migrations.RunSQL.noop, + ) + ] diff --git a/euth/contrib/migrations/__init__.py b/euth/contrib/migrations/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/euth/contrib/sitemaps/adhocracy4_sitemap.py b/euth/contrib/sitemaps/adhocracy4_sitemap.py deleted file mode 100644 index b4f477387..000000000 --- a/euth/contrib/sitemaps/adhocracy4_sitemap.py +++ /dev/null @@ -1,12 +0,0 @@ -from django.contrib.sitemaps import Sitemap - -from adhocracy4.projects.enums import Access -from adhocracy4.projects.models import Project - - -class Adhocracy4Sitemap(Sitemap): - changefreq = "monthly" - priority = 0.8 - - def items(self): - return Project.objects.filter(is_draft=False, access=Access.PUBLIC) diff --git a/euth/organisations/migrations/0007_auto_20240910_1638.py b/euth/organisations/migrations/0007_auto_20240910_1638.py new file mode 100644 index 000000000..c47c456c2 --- /dev/null +++ b/euth/organisations/migrations/0007_auto_20240910_1638.py @@ -0,0 +1,27 @@ +# Generated by Django 3.2.20 on 2024-09-10 14:38 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('euth_organisations', '0006_update_parler_field'), + ] + + operations = [ + migrations.AlterUniqueTogether( + name='organisationtranslation', + unique_together=None, + ), + migrations.RemoveField( + model_name='organisationtranslation', + name='master', + ), + migrations.DeleteModel( + name='Organisation', + ), + migrations.DeleteModel( + name='OrganisationTranslation', + ), + ] diff --git a/euth/organisations/models.py b/euth/organisations/models.py index 22345aff1..e69de29bb 100644 --- a/euth/organisations/models.py +++ b/euth/organisations/models.py @@ -1,73 +0,0 @@ -from django.conf import settings -from django.db import models -from django.utils.translation import gettext_lazy as _ -from django_countries import fields as countries_fields -from parler.models import TranslatableManager -from parler.models import TranslatableModel -from parler.models import TranslatedFields - -from adhocracy4.images import fields -from adhocracy4.models import base - - -class OrganisationManager(TranslatableManager): - def get_by_natural_key(self, name): - return self.get(name=name) - - -class Organisation(base.TimeStampedModel, TranslatableModel): - name = models.CharField( - max_length=512, - unique=True, - verbose_name=_('title') - ) - slug = models.SlugField(max_length=512, unique=True) - - translations = TranslatedFields( - description_why=models.TextField(), - description_how=models.TextField(), - description=models.TextField(), - ) - - initiators = models.ManyToManyField(settings.AUTH_USER_MODEL) - image = fields.ConfiguredImageField( - 'heroimage', - upload_to='organisations/images', - blank=True, - verbose_name=_('Header image'), - help_prefix=_( - 'The image sets the atmosphere for your organisation page.' - ), - ) - logo = fields.ConfiguredImageField( - 'logo', - upload_to='organisations/logos', - blank=True, - help_prefix=_( - 'The official logo of your organisation.' - ), - ) - twitter_handle = models.CharField(max_length=200, blank=True) - facebook_handle = models.CharField(max_length=200, blank=True) - instagram_handle = models.CharField(max_length=200, blank=True) - webpage = models.URLField(blank=True) - country = countries_fields.CountryField() - place = models.CharField(max_length=200) - - objects = OrganisationManager() - - def __str__(self): - return self.name - - def has_social_share(self): - return ( - self.twitter_handle or self.facebook_handle - or self.instagram_handle or self.webpage - ) - - def has_initiator(self, user): - return user in self.initiators.all() - - def get_absolute_url(self): - from django.urls import reverse - return reverse('organisation-detail', args=[str(self.slug)]) diff --git a/euth_wagtail/settings/base.py b/euth_wagtail/settings/base.py index cfb9f1d86..22ac0c6d6 100644 --- a/euth_wagtail/settings/base.py +++ b/euth_wagtail/settings/base.py @@ -67,24 +67,6 @@ 'allauth.socialaccount', 'micawber.contrib.mcdjango', - 'adhocracy4.administrative_districts', - 'adhocracy4.images', - 'adhocracy4.forms', - 'adhocracy4.phases', - 'adhocracy4.projects', - 'adhocracy4.ratings', - 'adhocracy4.reports', - 'adhocracy4.modules', - 'adhocracy4.categories', - 'adhocracy4.comments', - 'adhocracy4.comments_async', - 'adhocracy4.maps', - 'adhocracy4.filters', - 'adhocracy4.rules', - 'adhocracy4.ckeditor', - 'adhocracy4.dashboard', - 'adhocracy4.polls', - 'adhocracy4.organisations', 'euth.users', 'euth.organisations', 'euth.accounts', @@ -414,13 +396,6 @@ ) A4_COMMENTABLES = ( - ('euth_communitydebate', 'topic'), - ('euth_ideas', 'idea'), - ('euth_maps', 'mapidea'), - ('euth_documents', 'paragraph'), - ('euth_documents', 'document'), - ('a4comments', 'comment'), - ('a4polls', 'poll') ) A4_COMMENT_CATEGORIES = ( diff --git a/euth_wagtail/urls.py b/euth_wagtail/urls.py index 0b76240f9..81c56b48b 100644 --- a/euth_wagtail/urls.py +++ b/euth_wagtail/urls.py @@ -9,7 +9,6 @@ from django.views.decorators.cache import never_cache from django.views.generic import TemplateView from django.views.i18n import JavaScriptCatalog -from rest_framework import routers from wagtail import urls as wagtail_urls from wagtail.admin import urls as wagtailadmin_urls from wagtail.contrib.sitemaps import views as wagtail_sitemap_views @@ -17,29 +16,12 @@ Sitemap as WagtailSitemap from wagtail.documents import urls as wagtaildocs_urls -from adhocracy4.api import routers as a4routers -from adhocracy4.comments_async.api import CommentViewSet -from adhocracy4.polls.api import PollViewSet -from adhocracy4.ratings.api import RatingViewSet -from adhocracy4.reports.api import ReportViewSet from euth.accounts import urls as accounts_urls -from euth.contrib.sitemaps.adhocracy4_sitemap import Adhocracy4Sitemap from euth.contrib.sitemaps.static_sitemap import StaticSitemap from . import urls_accounts -router = routers.DefaultRouter() -router.register(r'polls', PollViewSet, basename='polls') -router.register(r'reports', ReportViewSet, basename='reports') - -ct_router = a4routers.ContentTypeDefaultRouter() -ct_router.register(r'comments', CommentViewSet, basename='comments') -ct_router.register(r'ratings', RatingViewSet, basename='ratings') - -module_router = a4routers.ModuleDefaultRouter() - sitemaps = { - 'adhocracy4': Adhocracy4Sitemap, 'wagtail': WagtailSitemap, 'static': StaticSitemap } @@ -48,9 +30,6 @@ path('django-admin/', admin.site.urls), path('admin/', include(wagtailadmin_urls)), path('documents/', include(wagtaildocs_urls)), - path('api/', include(router.urls)), - path('api/', include(ct_router.urls)), - path('api/', include(module_router.urls)), path('upload/', login_required(ck_views.upload), name='ckeditor_upload'), path('browse/', never_cache(login_required(ck_views.browse)), name='ckeditor_browse'), diff --git a/home/migrations/0001_initial.py b/home/migrations/0001_initial.py index f6c27d7c3..afff9c5de 100644 --- a/home/migrations/0001_initial.py +++ b/home/migrations/0001_initial.py @@ -1,24 +1,341 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals +# Generated by Django 3.2.20 on 2024-09-10 14:59 -from django.db import models, migrations +from django.db import migrations, models +import django.db.models.deletion +import home.models.snippets +import modelcluster.fields +import wagtail.blocks +import wagtail.embeds.blocks +import wagtail.fields +import wagtail.images.blocks +import wagtail.snippets.blocks class Migration(migrations.Migration): + initial = True + dependencies = [ - ('wagtailcore', '0029_unicode_slugfield_dj19'), + ('wagtailcore', '0078_referenceindex'), + ('wagtailimages', '0024_index_image_file_hash'), + ('wagtaildocs', '0012_uploadeddocument'), ] operations = [ migrations.CreateModel( - name='HomePage', + name='ManualsIndex', fields=[ - ('page_ptr', models.OneToOneField(parent_link=True, auto_created=True, primary_key=True, serialize=False, to='wagtailcore.Page', on_delete=models.CASCADE)), + ('page_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='wagtailcore.page')), + ('title_en', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_de', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_it', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_fr', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_sv', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_sl', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_da', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_el', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_ka', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_mk', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_bg', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('body_en', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_de', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_it', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_fr', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_sv', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_sl', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_da', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_el', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_ka', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_mk', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_bg', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), ], options={ 'abstract': False, }, bases=('wagtailcore.page',), ), + migrations.CreateModel( + name='MenuItem', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('link_view', models.CharField(blank=True, choices=[('organisation-list', 'List of Organisations')], max_length=100)), + ('menu_title_en', models.CharField(max_length=255)), + ('menu_title_de', models.CharField(blank=True, max_length=255)), + ('menu_title_it', models.CharField(blank=True, max_length=255)), + ('menu_title_fr', models.CharField(blank=True, max_length=255)), + ('menu_title_sv', models.CharField(blank=True, max_length=255)), + ('menu_title_sl', models.CharField(blank=True, max_length=255)), + ('menu_title_da', models.CharField(blank=True, max_length=255)), + ('menu_title_el', models.CharField(blank=True, max_length=255)), + ('menu_title_ka', models.CharField(blank=True, max_length=255)), + ('menu_title_mk', models.CharField(blank=True, max_length=255)), + ('menu_title_bg', models.CharField(blank=True, max_length=255)), + ('link_page', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='+', to='wagtailcore.page')), + ], + options={ + 'abstract': False, + }, + ), + migrations.CreateModel( + name='NavigationMenu', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('menu_name', models.CharField(max_length=255)), + ], + options={ + 'abstract': False, + }, + ), + migrations.CreateModel( + name='RSSImport', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('url', models.URLField(blank=True, null=True)), + ('rss_title_en', models.CharField(max_length=255)), + ('rss_title_de', models.CharField(blank=True, max_length=255)), + ('rss_title_it', models.CharField(blank=True, max_length=255)), + ('rss_title_fr', models.CharField(blank=True, max_length=255)), + ('rss_title_sv', models.CharField(blank=True, max_length=255)), + ('rss_title_sl', models.CharField(blank=True, max_length=255)), + ('rss_title_da', models.CharField(blank=True, max_length=255)), + ('rss_title_el', models.CharField(blank=True, max_length=255)), + ('rss_title_ka', models.CharField(blank=True, max_length=255)), + ('rss_title_mk', models.CharField(blank=True, max_length=255)), + ('rss_title_bg', models.CharField(blank=True, max_length=255)), + ], + options={ + 'abstract': False, + }, + ), + migrations.CreateModel( + name='SimplePage', + fields=[ + ('page_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='wagtailcore.page')), + ('title_en', models.CharField(blank=True, max_length=255, verbose_name='Title')), + ('title_de', models.CharField(blank=True, max_length=255, verbose_name='Title')), + ('title_it', models.CharField(blank=True, max_length=255, verbose_name='Title')), + ('title_fr', models.CharField(blank=True, max_length=255, verbose_name='Title')), + ('title_sv', models.CharField(blank=True, max_length=255, verbose_name='Title')), + ('title_sl', models.CharField(blank=True, max_length=255, verbose_name='Title')), + ('title_da', models.CharField(blank=True, max_length=255, verbose_name='Title')), + ('title_el', models.CharField(blank=True, max_length=255, verbose_name='Title')), + ('title_ka', models.CharField(blank=True, max_length=255, verbose_name='Title')), + ('title_mk', models.CharField(blank=True, max_length=255, verbose_name='Title')), + ('title_bg', models.CharField(blank=True, max_length=255, verbose_name='Title')), + ('intro_en', models.CharField(blank=True, max_length=255, verbose_name='Subtitle')), + ('intro_de', models.CharField(blank=True, max_length=255, verbose_name='Subtitle')), + ('intro_it', models.CharField(blank=True, max_length=255, verbose_name='Subtitle')), + ('intro_fr', models.CharField(blank=True, max_length=255, verbose_name='Subtitle')), + ('intro_sv', models.CharField(blank=True, max_length=255, verbose_name='Subtitle')), + ('intro_sl', models.CharField(blank=True, max_length=255, verbose_name='Subtitle')), + ('intro_da', models.CharField(blank=True, max_length=255, verbose_name='Subtitle')), + ('intro_el', models.CharField(blank=True, max_length=255, verbose_name='Subtitle')), + ('intro_ka', models.CharField(blank=True, max_length=255, verbose_name='Subtitle')), + ('intro_mk', models.CharField(blank=True, max_length=255, verbose_name='Subtitle')), + ('intro_bg', models.CharField(blank=True, max_length=255, verbose_name='Subtitle')), + ('body_en', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_de', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_it', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_fr', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_sv', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_sl', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_da', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_el', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_ka', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_mk', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_bg', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('intro_image', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailimages.image')), + ], + options={ + 'abstract': False, + }, + bases=('wagtailcore.page',), + ), + migrations.CreateModel( + name='PageCollection', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('title_en', models.CharField(max_length=80)), + ('title_de', models.CharField(blank=True, max_length=80)), + ('title_it', models.CharField(blank=True, max_length=80)), + ('title_fr', models.CharField(blank=True, max_length=80)), + ('title_sv', models.CharField(blank=True, max_length=80)), + ('title_sl', models.CharField(blank=True, max_length=80)), + ('title_da', models.CharField(blank=True, max_length=80)), + ('title_el', models.CharField(blank=True, max_length=80)), + ('title_ka', models.CharField(blank=True, max_length=80)), + ('title_mk', models.CharField(blank=True, max_length=80)), + ('title_bg', models.CharField(blank=True, max_length=80)), + ('intro_text_en', models.CharField(max_length=250)), + ('intro_text_de', models.CharField(blank=True, max_length=250)), + ('intro_text_it', models.CharField(blank=True, max_length=250)), + ('intro_text_fr', models.CharField(blank=True, max_length=250)), + ('intro_text_sv', models.CharField(blank=True, max_length=250)), + ('intro_text_sl', models.CharField(blank=True, max_length=250)), + ('intro_text_da', models.CharField(blank=True, max_length=250)), + ('intro_text_el', models.CharField(blank=True, max_length=250)), + ('intro_text_ka', models.CharField(blank=True, max_length=250)), + ('intro_text_mk', models.CharField(blank=True, max_length=250)), + ('intro_text_bg', models.CharField(blank=True, max_length=250)), + ('image', models.ForeignKey(blank=True, help_text='The Image that is shown on top of the page', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailimages.image')), + ('page_1', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.page')), + ('page_10', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.page')), + ('page_11', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.page')), + ('page_12', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.page')), + ('page_13', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.page')), + ('page_14', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.page')), + ('page_15', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.page')), + ('page_16', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.page')), + ('page_17', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.page')), + ('page_2', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.page')), + ('page_3', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.page')), + ('page_4', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.page')), + ('page_5', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.page')), + ('page_6', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.page')), + ('page_7', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.page')), + ('page_8', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.page')), + ('page_9', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.page')), + ], + options={ + 'abstract': False, + }, + ), + migrations.CreateModel( + name='ManualsSectionPage', + fields=[ + ('page_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='wagtailcore.page')), + ('body', wagtail.fields.StreamField([('snippet', wagtail.snippets.blocks.SnippetChooserBlock(required=False, target_model=home.models.snippets.PageCollection, template='home/blocks/page_collection_block.html'))], use_json_field=True)), + ('color', models.CharField(choices=[('blue', 'Blue'), ('orange', 'Orange'), ('turquoise', 'Turquoise'), ('pink', 'Pink'), ('purple', 'Purple')], default='blue', max_length=9)), + ('title_en', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_de', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_it', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_fr', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_sv', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_sl', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_da', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_el', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_ka', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_mk', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_bg', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('description_en', models.CharField(blank=True, max_length=260, verbose_name='Description')), + ('description_de', models.CharField(blank=True, max_length=260, verbose_name='Description')), + ('description_it', models.CharField(blank=True, max_length=260, verbose_name='Description')), + ('description_fr', models.CharField(blank=True, max_length=260, verbose_name='Description')), + ('description_sv', models.CharField(blank=True, max_length=260, verbose_name='Description')), + ('description_sl', models.CharField(blank=True, max_length=260, verbose_name='Description')), + ('description_da', models.CharField(blank=True, max_length=260, verbose_name='Description')), + ('description_el', models.CharField(blank=True, max_length=260, verbose_name='Description')), + ('description_ka', models.CharField(blank=True, max_length=260, verbose_name='Description')), + ('description_mk', models.CharField(blank=True, max_length=260, verbose_name='Description')), + ('description_bg', models.CharField(blank=True, max_length=260, verbose_name='Description')), + ('document', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtaildocs.document')), + ('image', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailimages.image')), + ], + options={ + 'abstract': False, + }, + bases=('wagtailcore.page',), + ), + migrations.CreateModel( + name='ManualsDetailPage', + fields=[ + ('page_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='wagtailcore.page')), + ('color', models.CharField(blank=True, choices=[('blue', 'Blue'), ('orange', 'Orange'), ('turquoise', 'Turquoise'), ('pink', 'Pink'), ('purple', 'Purple')], default='blue', max_length=9)), + ('title_en', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_de', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_it', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_fr', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_sv', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_sl', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_da', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_el', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_ka', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_mk', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('title_bg', models.CharField(blank=True, max_length=150, verbose_name='Title')), + ('description_en', models.CharField(blank=True, max_length=260, verbose_name='Subtitle')), + ('description_de', models.CharField(blank=True, max_length=260, verbose_name='Subtitle')), + ('description_it', models.CharField(blank=True, max_length=260, verbose_name='Subtitle')), + ('description_fr', models.CharField(blank=True, max_length=260, verbose_name='Subtitle')), + ('description_sv', models.CharField(blank=True, max_length=260, verbose_name='Subtitle')), + ('description_sl', models.CharField(blank=True, max_length=260, verbose_name='Subtitle')), + ('description_da', models.CharField(blank=True, max_length=260, verbose_name='Subtitle')), + ('description_el', models.CharField(blank=True, max_length=260, verbose_name='Subtitle')), + ('description_ka', models.CharField(blank=True, max_length=260, verbose_name='Subtitle')), + ('description_mk', models.CharField(blank=True, max_length=260, verbose_name='Subtitle')), + ('description_bg', models.CharField(blank=True, max_length=260, verbose_name='Subtitle')), + ('body_en', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_de', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_it', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_fr', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_sv', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_sl', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_da', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_el', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_ka', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_mk', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('body_bg', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body')), + ('image', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailimages.image')), + ], + options={ + 'abstract': False, + }, + bases=('wagtailcore.page',), + ), + migrations.CreateModel( + name='HomePage', + fields=[ + ('page_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='wagtailcore.page')), + ('title_en', models.CharField(blank=True, max_length=255, verbose_name='Header Title')), + ('title_de', models.CharField(blank=True, max_length=255, verbose_name='Header Title')), + ('title_it', models.CharField(blank=True, max_length=255, verbose_name='Header Title')), + ('title_fr', models.CharField(blank=True, max_length=255, verbose_name='Header Title')), + ('title_sv', models.CharField(blank=True, max_length=255, verbose_name='Header Title')), + ('title_sl', models.CharField(blank=True, max_length=255, verbose_name='Header Title')), + ('title_da', models.CharField(blank=True, max_length=255, verbose_name='Header Title')), + ('title_el', models.CharField(blank=True, max_length=255, verbose_name='Header Title')), + ('title_ka', models.CharField(blank=True, max_length=255, verbose_name='Header Title')), + ('title_mk', models.CharField(blank=True, max_length=255, verbose_name='Header Title')), + ('title_bg', models.CharField(blank=True, max_length=255, verbose_name='Header Title')), + ('intro_en', models.CharField(blank=True, default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.', max_length=255, verbose_name='Subtitle')), + ('intro_de', models.CharField(blank=True, default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.', max_length=255, verbose_name='Subtitle')), + ('intro_it', models.CharField(blank=True, default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.', max_length=255, verbose_name='Subtitle')), + ('intro_fr', models.CharField(blank=True, default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.', max_length=255, verbose_name='Subtitle')), + ('intro_sv', models.CharField(blank=True, default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.', max_length=255, verbose_name='Subtitle')), + ('intro_sl', models.CharField(blank=True, default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.', max_length=255, verbose_name='Subtitle')), + ('intro_da', models.CharField(blank=True, default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.', max_length=255, verbose_name='Subtitle')), + ('intro_el', models.CharField(blank=True, default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.', max_length=255, verbose_name='Subtitle')), + ('intro_ka', models.CharField(blank=True, default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.', max_length=255, verbose_name='Subtitle')), + ('intro_mk', models.CharField(blank=True, default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.', max_length=255, verbose_name='Subtitle')), + ('intro_bg', models.CharField(blank=True, default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.', max_length=255, verbose_name='Subtitle')), + ('body_en', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], null=True, use_json_field=True)), + ('body_de', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True)), + ('body_it', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True)), + ('body_fr', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True)), + ('body_sv', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True)), + ('body_sl', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True)), + ('body_da', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True)), + ('body_el', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True)), + ('body_ka', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True)), + ('body_mk', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True)), + ('body_bg', wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True)), + ('image', models.ForeignKey(blank=True, help_text='The Image that is shown on top of the page', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailimages.image', verbose_name='Header Image')), + ], + options={ + 'verbose_name': 'Homepage', + }, + bases=('wagtailcore.page',), + ), + migrations.CreateModel( + name='NavigationMenuItem', + fields=[ + ('menuitem_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='home.menuitem')), + ('sort_order', models.IntegerField(blank=True, editable=False, null=True)), + ('parent', modelcluster.fields.ParentalKey(on_delete=django.db.models.deletion.CASCADE, related_name='menu_items', to='home.navigationmenu')), + ], + options={ + 'ordering': ['sort_order'], + 'abstract': False, + }, + bases=('home.menuitem', models.Model), + ), ] diff --git a/home/migrations/0002_create_homepage.py b/home/migrations/0002_create_homepage.py deleted file mode 100644 index 353fc9362..000000000 --- a/home/migrations/0002_create_homepage.py +++ /dev/null @@ -1,45 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations - - -def create_homepage(apps, schema_editor): - # Get models - ContentType = apps.get_model('contenttypes.ContentType') - Page = apps.get_model('wagtailcore.Page') - Site = apps.get_model('wagtailcore.Site') - HomePage = apps.get_model('home.HomePage') - - # Delete the default homepage - Page.objects.get(id=2).delete() - - # Create content type for homepage model - homepage_content_type, created = ContentType.objects.get_or_create( - model='homepage', app_label='home') - - # Create a new homepage - homepage = HomePage.objects.create( - title="Homepage", - slug='home', - content_type=homepage_content_type, - path='00010001', - depth=2, - numchild=0, - url_path='/home/', - ) - - # Create a site with the new homepage set as the root - Site.objects.create( - hostname='localhost', root_page=homepage, is_default_site=True) - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0001_initial'), - ] - - operations = [ - migrations.RunPython(create_homepage), - ] diff --git a/home/migrations/0003_simplepage.py b/home/migrations/0003_simplepage.py deleted file mode 100644 index ade0e63c5..000000000 --- a/home/migrations/0003_simplepage.py +++ /dev/null @@ -1,44 +0,0 @@ -# -*- coding: utf-8 -*- -# Generated by Django 1.9.1 on 2016-01-12 14:48 -from __future__ import unicode_literals - -from django.db import migrations, models -import django.db.models.deletion -import wagtail.blocks -import wagtail.fields -import wagtail.images.blocks - - -class Migration(migrations.Migration): - - dependencies = [ - ('wagtailcore', '0023_alter_page_revision_on_delete_behaviour'), - ('home', '0002_create_homepage'), - ] - - operations = [ - migrations.CreateModel( - name='SimplePage', - fields=[ - ('page_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='wagtailcore.Page')), - ('title_en', models.CharField(max_length=255)), - ('title_de', models.CharField(blank=True, max_length=255)), - ('title_it', models.CharField(blank=True, max_length=255)), - ('title_fr', models.CharField(blank=True, max_length=255)), - ('title_sv', models.CharField(blank=True, max_length=255)), - ('title_sl', models.CharField(blank=True, max_length=255)), - ('title_da', models.CharField(blank=True, max_length=255)), - ('body_en', wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image'))), null=True)), - ('body_de', wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image'))), blank=True, null=True)), - ('body_it', wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image'))), blank=True, null=True)), - ('body_fr', wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image'))), blank=True, null=True)), - ('body_sv', wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image'))), blank=True, null=True)), - ('body_sl', wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image'))), blank=True, null=True)), - ('body_da', wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image'))), blank=True, null=True)), - ], - options={ - 'abstract': False, - }, - bases=('wagtailcore.page',), - ), - ] diff --git a/home/migrations/0004_auto_20160128_1034.py b/home/migrations/0004_auto_20160128_1034.py deleted file mode 100644 index 1eae1f8b3..000000000 --- a/home/migrations/0004_auto_20160128_1034.py +++ /dev/null @@ -1,111 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models -import wagtail.blocks -import django.db.models.deletion -import wagtail.fields -import wagtail.images.blocks -import wagtail.embeds.blocks - - -class Migration(migrations.Migration): - - dependencies = [ - ('wagtailimages', '0010_change_on_delete_behaviour'), - ('wagtailcore', '0023_alter_page_revision_on_delete_behaviour'), - ('home', '0003_simplepage'), - ] - - operations = [ - migrations.CreateModel( - name='AboutPage', - fields=[ - ('page_ptr', models.OneToOneField(auto_created=True, parent_link=True, primary_key=True, to='wagtailcore.Page', serialize=False, on_delete=models.CASCADE)), - ], - options={ - 'abstract': False, - }, - bases=('wagtailcore.page',), - ), - migrations.AlterModelOptions( - name='homepage', - options={'verbose_name': 'Homepage'}, - ), - migrations.AddField( - model_name='homepage', - name='body_da', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('background_colour', wagtail.blocks.ChoiceBlock(choices=[('none', 'none'), ('inverse', 'inverse'), ('danger', 'danger')], default='none')), ('font_colour', wagtail.blocks.ChoiceBlock(choices=[('none', 'none'), ('inverse', 'inverse'), ('danger', 'danger')], default='black')), ('heading', wagtail.blocks.TextBlock()), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('embedded_video', wagtail.embeds.blocks.EmbedBlock(required=False)), ('text', wagtail.blocks.TextBlock()), ('internal_link', wagtail.blocks.URLBlock(required=False)))))), blank=True, null=True), - ), - migrations.AddField( - model_name='homepage', - name='body_de', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('background_colour', wagtail.blocks.ChoiceBlock(choices=[('none', 'none'), ('inverse', 'inverse'), ('danger', 'danger')], default='none')), ('font_colour', wagtail.blocks.ChoiceBlock(choices=[('none', 'none'), ('inverse', 'inverse'), ('danger', 'danger')], default='black')), ('heading', wagtail.blocks.TextBlock()), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('embedded_video', wagtail.embeds.blocks.EmbedBlock(required=False)), ('text', wagtail.blocks.TextBlock()), ('internal_link', wagtail.blocks.URLBlock(required=False)))))), blank=True, null=True), - ), - migrations.AddField( - model_name='homepage', - name='body_en', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('background_colour', wagtail.blocks.ChoiceBlock(choices=[('none', 'none'), ('inverse', 'inverse'), ('danger', 'danger')], default='none')), ('font_colour', wagtail.blocks.ChoiceBlock(choices=[('none', 'none'), ('inverse', 'inverse'), ('danger', 'danger')], default='black')), ('heading', wagtail.blocks.TextBlock()), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('embedded_video', wagtail.embeds.blocks.EmbedBlock(required=False)), ('text', wagtail.blocks.TextBlock()), ('internal_link', wagtail.blocks.URLBlock(required=False)))))), null=True), - ), - migrations.AddField( - model_name='homepage', - name='body_fr', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('background_colour', wagtail.blocks.ChoiceBlock(choices=[('none', 'none'), ('inverse', 'inverse'), ('danger', 'danger')], default='none')), ('font_colour', wagtail.blocks.ChoiceBlock(choices=[('none', 'none'), ('inverse', 'inverse'), ('danger', 'danger')], default='black')), ('heading', wagtail.blocks.TextBlock()), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('embedded_video', wagtail.embeds.blocks.EmbedBlock(required=False)), ('text', wagtail.blocks.TextBlock()), ('internal_link', wagtail.blocks.URLBlock(required=False)))))), blank=True, null=True), - ), - migrations.AddField( - model_name='homepage', - name='body_it', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('background_colour', wagtail.blocks.ChoiceBlock(choices=[('none', 'none'), ('inverse', 'inverse'), ('danger', 'danger')], default='none')), ('font_colour', wagtail.blocks.ChoiceBlock(choices=[('none', 'none'), ('inverse', 'inverse'), ('danger', 'danger')], default='black')), ('heading', wagtail.blocks.TextBlock()), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('embedded_video', wagtail.embeds.blocks.EmbedBlock(required=False)), ('text', wagtail.blocks.TextBlock()), ('internal_link', wagtail.blocks.URLBlock(required=False)))))), blank=True, null=True), - ), - migrations.AddField( - model_name='homepage', - name='body_sl', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('background_colour', wagtail.blocks.ChoiceBlock(choices=[('none', 'none'), ('inverse', 'inverse'), ('danger', 'danger')], default='none')), ('font_colour', wagtail.blocks.ChoiceBlock(choices=[('none', 'none'), ('inverse', 'inverse'), ('danger', 'danger')], default='black')), ('heading', wagtail.blocks.TextBlock()), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('embedded_video', wagtail.embeds.blocks.EmbedBlock(required=False)), ('text', wagtail.blocks.TextBlock()), ('internal_link', wagtail.blocks.URLBlock(required=False)))))), blank=True, null=True), - ), - migrations.AddField( - model_name='homepage', - name='body_sv', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('background_colour', wagtail.blocks.ChoiceBlock(choices=[('none', 'none'), ('inverse', 'inverse'), ('danger', 'danger')], default='none')), ('font_colour', wagtail.blocks.ChoiceBlock(choices=[('none', 'none'), ('inverse', 'inverse'), ('danger', 'danger')], default='black')), ('heading', wagtail.blocks.TextBlock()), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('embedded_video', wagtail.embeds.blocks.EmbedBlock(required=False)), ('text', wagtail.blocks.TextBlock()), ('internal_link', wagtail.blocks.URLBlock(required=False)))))), blank=True, null=True), - ), - migrations.AddField( - model_name='homepage', - name='image', - field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='wagtailimages.Image', blank=True, related_name='+'), - ), - migrations.AddField( - model_name='homepage', - name='title_da', - field=models.CharField(max_length=255, blank=True), - ), - migrations.AddField( - model_name='homepage', - name='title_de', - field=models.CharField(max_length=255, blank=True), - ), - migrations.AddField( - model_name='homepage', - name='title_en', - field=models.CharField(max_length=255, default=0), - preserve_default=False, - ), - migrations.AddField( - model_name='homepage', - name='title_fr', - field=models.CharField(max_length=255, blank=True), - ), - migrations.AddField( - model_name='homepage', - name='title_it', - field=models.CharField(max_length=255, blank=True), - ), - migrations.AddField( - model_name='homepage', - name='title_sl', - field=models.CharField(max_length=255, blank=True), - ), - migrations.AddField( - model_name='homepage', - name='title_sv', - field=models.CharField(max_length=255, blank=True), - ), - ] diff --git a/home/migrations/0005_auto_20160128_1406.py b/home/migrations/0005_auto_20160128_1406.py deleted file mode 100644 index b203c9ff5..000000000 --- a/home/migrations/0005_auto_20160128_1406.py +++ /dev/null @@ -1,53 +0,0 @@ -# -*- coding: utf-8 -*- -# Generated by Django 1.9.1 on 2016-01-28 14:06 -from __future__ import unicode_literals - -from django.db import migrations -import wagtail.blocks -import wagtail.fields -import wagtail.images.blocks - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0004_auto_20160128_1034'), - ] - - operations = [ - migrations.AlterField( - model_name='homepage', - name='body_da', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([(b'title', wagtail.blocks.CharBlock(classname=b'full title')), (b'image', wagtail.images.blocks.ImageChooserBlock(required=False)), (b'text', wagtail.blocks.TextBlock()), (b'button', wagtail.blocks.StructBlock([(b'internal_link', wagtail.blocks.PageChooserBlock(required=False)), (b'external_link', wagtail.blocks.URLBlock()), (b'link_text', wagtail.blocks.TextBlock())], required=False)), (b'highlight', wagtail.blocks.BooleanBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_de', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([(b'title', wagtail.blocks.CharBlock(classname=b'full title')), (b'image', wagtail.images.blocks.ImageChooserBlock(required=False)), (b'text', wagtail.blocks.TextBlock()), (b'button', wagtail.blocks.StructBlock([(b'internal_link', wagtail.blocks.PageChooserBlock(required=False)), (b'external_link', wagtail.blocks.URLBlock()), (b'link_text', wagtail.blocks.TextBlock())], required=False)), (b'highlight', wagtail.blocks.BooleanBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_en', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([(b'title', wagtail.blocks.CharBlock(classname=b'full title')), (b'image', wagtail.images.blocks.ImageChooserBlock(required=False)), (b'text', wagtail.blocks.TextBlock()), (b'button', wagtail.blocks.StructBlock([(b'internal_link', wagtail.blocks.PageChooserBlock(required=False)), (b'external_link', wagtail.blocks.URLBlock()), (b'link_text', wagtail.blocks.TextBlock())], required=False)), (b'highlight', wagtail.blocks.BooleanBlock(required=False))]))], null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_fr', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([(b'title', wagtail.blocks.CharBlock(classname=b'full title')), (b'image', wagtail.images.blocks.ImageChooserBlock(required=False)), (b'text', wagtail.blocks.TextBlock()), (b'button', wagtail.blocks.StructBlock([(b'internal_link', wagtail.blocks.PageChooserBlock(required=False)), (b'external_link', wagtail.blocks.URLBlock()), (b'link_text', wagtail.blocks.TextBlock())], required=False)), (b'highlight', wagtail.blocks.BooleanBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_it', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([(b'title', wagtail.blocks.CharBlock(classname=b'full title')), (b'image', wagtail.images.blocks.ImageChooserBlock(required=False)), (b'text', wagtail.blocks.TextBlock()), (b'button', wagtail.blocks.StructBlock([(b'internal_link', wagtail.blocks.PageChooserBlock(required=False)), (b'external_link', wagtail.blocks.URLBlock()), (b'link_text', wagtail.blocks.TextBlock())], required=False)), (b'highlight', wagtail.blocks.BooleanBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_sl', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([(b'title', wagtail.blocks.CharBlock(classname=b'full title')), (b'image', wagtail.images.blocks.ImageChooserBlock(required=False)), (b'text', wagtail.blocks.TextBlock()), (b'button', wagtail.blocks.StructBlock([(b'internal_link', wagtail.blocks.PageChooserBlock(required=False)), (b'external_link', wagtail.blocks.URLBlock()), (b'link_text', wagtail.blocks.TextBlock())], required=False)), (b'highlight', wagtail.blocks.BooleanBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_sv', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([(b'title', wagtail.blocks.CharBlock(classname=b'full title')), (b'image', wagtail.images.blocks.ImageChooserBlock(required=False)), (b'text', wagtail.blocks.TextBlock()), (b'button', wagtail.blocks.StructBlock([(b'internal_link', wagtail.blocks.PageChooserBlock(required=False)), (b'external_link', wagtail.blocks.URLBlock()), (b'link_text', wagtail.blocks.TextBlock())], required=False)), (b'highlight', wagtail.blocks.BooleanBlock(required=False))]))], blank=True, null=True), - ), - ] diff --git a/home/migrations/0006_auto_20160129_1731.py b/home/migrations/0006_auto_20160129_1731.py deleted file mode 100644 index b11e647f6..000000000 --- a/home/migrations/0006_auto_20160129_1731.py +++ /dev/null @@ -1,88 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models -import wagtail.blocks -import wagtail.fields -import wagtail.embeds.blocks -import wagtail.images.blocks - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0005_auto_20160128_1406'), - ] - - operations = [ - migrations.AlterField( - model_name='homepage', - name='body_da', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.TextBlock()), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(icon='cup', choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed')], help_text='How should this block be displayed?', required=False))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock()))))), null=True, blank=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_de', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.TextBlock()), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(icon='cup', choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed')], help_text='How should this block be displayed?', required=False))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock()))))), null=True, blank=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_en', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.TextBlock()), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(icon='cup', choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed')], help_text='How should this block be displayed?', required=False))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock()))))), null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_fr', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.TextBlock()), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(icon='cup', choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed')], help_text='How should this block be displayed?', required=False))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock()))))), null=True, blank=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_it', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.TextBlock()), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(icon='cup', choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed')], help_text='How should this block be displayed?', required=False))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock()))))), null=True, blank=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_sl', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.TextBlock()), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(icon='cup', choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed')], help_text='How should this block be displayed?', required=False))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock()))))), null=True, blank=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_sv', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.TextBlock()), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(icon='cup', choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed')], help_text='How should this block be displayed?', required=False))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock()))))), null=True, blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_da', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('images', wagtail.blocks.StructBlock((('left_image', wagtail.images.blocks.ImageChooserBlock()), ('left_image_text', wagtail.blocks.TextBlock()), ('middle_image', wagtail.images.blocks.ImageChooserBlock()), ('middle_image_text', wagtail.blocks.TextBlock()), ('right_image', wagtail.images.blocks.ImageChooserBlock()), ('right_image_text', wagtail.blocks.TextBlock()))))), null=True, blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_de', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('images', wagtail.blocks.StructBlock((('left_image', wagtail.images.blocks.ImageChooserBlock()), ('left_image_text', wagtail.blocks.TextBlock()), ('middle_image', wagtail.images.blocks.ImageChooserBlock()), ('middle_image_text', wagtail.blocks.TextBlock()), ('right_image', wagtail.images.blocks.ImageChooserBlock()), ('right_image_text', wagtail.blocks.TextBlock()))))), null=True, blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_en', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('images', wagtail.blocks.StructBlock((('left_image', wagtail.images.blocks.ImageChooserBlock()), ('left_image_text', wagtail.blocks.TextBlock()), ('middle_image', wagtail.images.blocks.ImageChooserBlock()), ('middle_image_text', wagtail.blocks.TextBlock()), ('right_image', wagtail.images.blocks.ImageChooserBlock()), ('right_image_text', wagtail.blocks.TextBlock()))))), null=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_fr', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('images', wagtail.blocks.StructBlock((('left_image', wagtail.images.blocks.ImageChooserBlock()), ('left_image_text', wagtail.blocks.TextBlock()), ('middle_image', wagtail.images.blocks.ImageChooserBlock()), ('middle_image_text', wagtail.blocks.TextBlock()), ('right_image', wagtail.images.blocks.ImageChooserBlock()), ('right_image_text', wagtail.blocks.TextBlock()))))), null=True, blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_it', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('images', wagtail.blocks.StructBlock((('left_image', wagtail.images.blocks.ImageChooserBlock()), ('left_image_text', wagtail.blocks.TextBlock()), ('middle_image', wagtail.images.blocks.ImageChooserBlock()), ('middle_image_text', wagtail.blocks.TextBlock()), ('right_image', wagtail.images.blocks.ImageChooserBlock()), ('right_image_text', wagtail.blocks.TextBlock()))))), null=True, blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_sl', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('images', wagtail.blocks.StructBlock((('left_image', wagtail.images.blocks.ImageChooserBlock()), ('left_image_text', wagtail.blocks.TextBlock()), ('middle_image', wagtail.images.blocks.ImageChooserBlock()), ('middle_image_text', wagtail.blocks.TextBlock()), ('right_image', wagtail.images.blocks.ImageChooserBlock()), ('right_image_text', wagtail.blocks.TextBlock()))))), null=True, blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_sv', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('images', wagtail.blocks.StructBlock((('left_image', wagtail.images.blocks.ImageChooserBlock()), ('left_image_text', wagtail.blocks.TextBlock()), ('middle_image', wagtail.images.blocks.ImageChooserBlock()), ('middle_image_text', wagtail.blocks.TextBlock()), ('right_image', wagtail.images.blocks.ImageChooserBlock()), ('right_image_text', wagtail.blocks.TextBlock()))))), null=True, blank=True), - ), - ] diff --git a/home/migrations/0007_auto_20160205_1508.py b/home/migrations/0007_auto_20160205_1508.py deleted file mode 100644 index b0eea9ddc..000000000 --- a/home/migrations/0007_auto_20160205_1508.py +++ /dev/null @@ -1,176 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models -import wagtail.fields -import wagtail.images.blocks -import modelcluster.fields -import wagtail.blocks -import wagtail.embeds.blocks -import django.db.models.deletion - - -class Migration(migrations.Migration): - - dependencies = [ - ('wagtailcore', '0023_alter_page_revision_on_delete_behaviour'), - ('wagtailimages', '0010_change_on_delete_behaviour'), - ('home', '0006_auto_20160129_1731'), - ] - - operations = [ - migrations.CreateModel( - name='MenuItem', - fields=[ - ('id', models.AutoField(primary_key=True, verbose_name='ID', auto_created=True, serialize=False)), - ('menu_title', models.CharField(max_length=255)), - ('menu_title_de', models.CharField(blank=True, max_length=255)), - ('menu_title_it', models.CharField(blank=True, max_length=255)), - ('menu_title_fr', models.CharField(blank=True, max_length=255)), - ('menu_title_sv', models.CharField(blank=True, max_length=255)), - ('menu_title_sl', models.CharField(blank=True, max_length=255)), - ('menu_title_da', models.CharField(blank=True, max_length=255)), - ], - options={ - 'abstract': False, - }, - ), - migrations.CreateModel( - name='NavigationMenu', - fields=[ - ('id', models.AutoField(primary_key=True, verbose_name='ID', auto_created=True, serialize=False)), - ('menu_name', models.CharField(max_length=255)), - ], - options={ - 'abstract': False, - }, - ), - migrations.AddField( - model_name='simplepage', - name='intro_da', - field=models.CharField(blank=True, max_length=255), - ), - migrations.AddField( - model_name='simplepage', - name='intro_de', - field=models.CharField(blank=True, max_length=255), - ), - migrations.AddField( - model_name='simplepage', - name='intro_en', - field=models.CharField(blank=True, max_length=255), - ), - migrations.AddField( - model_name='simplepage', - name='intro_fr', - field=models.CharField(blank=True, max_length=255), - ), - migrations.AddField( - model_name='simplepage', - name='intro_image', - field=models.ForeignKey(related_name='+', blank=True, to='wagtailimages.Image', on_delete=django.db.models.deletion.SET_NULL, null=True), - ), - migrations.AddField( - model_name='simplepage', - name='intro_it', - field=models.CharField(blank=True, max_length=255), - ), - migrations.AddField( - model_name='simplepage', - name='intro_sl', - field=models.CharField(blank=True, max_length=255), - ), - migrations.AddField( - model_name='simplepage', - name='intro_sv', - field=models.CharField(blank=True, max_length=255), - ), - migrations.AlterField( - model_name='homepage', - name='body_da', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.TextBlock()), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(icon='cup', help_text='How should this block be displayed?', required=False, choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed')]))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title')))))), blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_de', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.TextBlock()), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(icon='cup', help_text='How should this block be displayed?', required=False, choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed')]))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title')))))), blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_en', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.TextBlock()), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(icon='cup', help_text='How should this block be displayed?', required=False, choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed')]))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title')))))), null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_fr', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.TextBlock()), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(icon='cup', help_text='How should this block be displayed?', required=False, choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed')]))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title')))))), blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_it', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.TextBlock()), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(icon='cup', help_text='How should this block be displayed?', required=False, choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed')]))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title')))))), blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_sl', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.TextBlock()), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(icon='cup', help_text='How should this block be displayed?', required=False, choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed')]))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title')))))), blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_sv', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.TextBlock()), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(icon='cup', help_text='How should this block be displayed?', required=False, choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed')]))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title')))))), blank=True, null=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_da', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('left_image', wagtail.images.blocks.ImageChooserBlock()), ('left_image_text', wagtail.blocks.TextBlock()), ('middle_image', wagtail.images.blocks.ImageChooserBlock()), ('middle_image_text', wagtail.blocks.TextBlock()), ('right_image', wagtail.images.blocks.ImageChooserBlock()), ('right_image_text', wagtail.blocks.TextBlock()), ('circles', wagtail.blocks.BooleanBlock())), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form'))), blank=True, null=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_de', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('left_image', wagtail.images.blocks.ImageChooserBlock()), ('left_image_text', wagtail.blocks.TextBlock()), ('middle_image', wagtail.images.blocks.ImageChooserBlock()), ('middle_image_text', wagtail.blocks.TextBlock()), ('right_image', wagtail.images.blocks.ImageChooserBlock()), ('right_image_text', wagtail.blocks.TextBlock()), ('circles', wagtail.blocks.BooleanBlock())), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form'))), blank=True, null=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_en', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('left_image', wagtail.images.blocks.ImageChooserBlock()), ('left_image_text', wagtail.blocks.TextBlock()), ('middle_image', wagtail.images.blocks.ImageChooserBlock()), ('middle_image_text', wagtail.blocks.TextBlock()), ('right_image', wagtail.images.blocks.ImageChooserBlock()), ('right_image_text', wagtail.blocks.TextBlock()), ('circles', wagtail.blocks.BooleanBlock())), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.TextBlock(required=False)))))),), icon='collapse-down'))), null=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_fr', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('left_image', wagtail.images.blocks.ImageChooserBlock()), ('left_image_text', wagtail.blocks.TextBlock()), ('middle_image', wagtail.images.blocks.ImageChooserBlock()), ('middle_image_text', wagtail.blocks.TextBlock()), ('right_image', wagtail.images.blocks.ImageChooserBlock()), ('right_image_text', wagtail.blocks.TextBlock()), ('circles', wagtail.blocks.BooleanBlock())), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form'))), blank=True, null=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_it', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('images', wagtail.blocks.StructBlock((('left_image', wagtail.images.blocks.ImageChooserBlock()), ('left_image_text', wagtail.blocks.TextBlock()), ('middle_image', wagtail.images.blocks.ImageChooserBlock()), ('middle_image_text', wagtail.blocks.TextBlock()), ('right_image', wagtail.images.blocks.ImageChooserBlock()), ('right_image_text', wagtail.blocks.TextBlock()), ('circles', wagtail.blocks.BooleanBlock())), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form'))), blank=True, null=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_sl', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('left_image', wagtail.images.blocks.ImageChooserBlock()), ('left_image_text', wagtail.blocks.TextBlock()), ('middle_image', wagtail.images.blocks.ImageChooserBlock()), ('middle_image_text', wagtail.blocks.TextBlock()), ('right_image', wagtail.images.blocks.ImageChooserBlock()), ('right_image_text', wagtail.blocks.TextBlock()), ('circles', wagtail.blocks.BooleanBlock())), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form'))), blank=True, null=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_sv', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('left_image', wagtail.images.blocks.ImageChooserBlock()), ('left_image_text', wagtail.blocks.TextBlock()), ('middle_image', wagtail.images.blocks.ImageChooserBlock()), ('middle_image_text', wagtail.blocks.TextBlock()), ('right_image', wagtail.images.blocks.ImageChooserBlock()), ('right_image_text', wagtail.blocks.TextBlock()), ('circles', wagtail.blocks.BooleanBlock())), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form'))), blank=True, null=True), - ), - migrations.CreateModel( - name='NavigationMenuItem', - fields=[ - ('menuitem_ptr', models.OneToOneField(parent_link=True, to='home.MenuItem', auto_created=True, primary_key=True, serialize=False, on_delete=models.CASCADE)), - ('sort_order', models.IntegerField(editable=False, blank=True, null=True)), - ('parent', modelcluster.fields.ParentalKey(to='home.NavigationMenu', related_name='menu_items', on_delete=models.CASCADE)), - ], - options={ - 'ordering': ['sort_order'], - 'abstract': False, - }, - bases=('home.menuitem', models.Model), - ), - migrations.AddField( - model_name='menuitem', - name='link_page', - field=models.ForeignKey(to='wagtailcore.Page', related_name='+', on_delete=models.CASCADE), - ), - ] diff --git a/home/migrations/0008_create_menus.py b/home/migrations/0008_create_menus.py deleted file mode 100644 index 08a259472..000000000 --- a/home/migrations/0008_create_menus.py +++ /dev/null @@ -1,30 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations - - -def create_menus(apps, schema_editor): - - NavigationMenu = apps.get_model('home.NavigationMenu') - - # Create Footer Navigation - NavigationMenu.objects.create( - menu_name="footer" - ) - - # Create TopMenu Navigation - NavigationMenu.objects.create( - menu_name="topmenu" - ) - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0007_auto_20160205_1508'), - ] - - operations = [ - migrations.RunPython(create_menus), - ] diff --git a/home/migrations/0009_auto_20160208_1401.py b/home/migrations/0009_auto_20160208_1401.py deleted file mode 100644 index 8b3b89c3f..000000000 --- a/home/migrations/0009_auto_20160208_1401.py +++ /dev/null @@ -1,169 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models -import django.db.models.deletion -import wagtail.blocks -import wagtail.images.blocks -import wagtail.fields - - -class Migration(migrations.Migration): - - dependencies = [ - ('wagtailredirects', '0005_capitalizeverbose'), - ('wagtailcore', '0023_alter_page_revision_on_delete_behaviour'), - ('wagtailforms', '0003_capitalizeverbose'), - ('home', '0008_create_menus'), - ] - - operations = [ - migrations.AlterField( - model_name='homepage', - name='image', - field=models.ForeignKey(verbose_name='Header Image', related_name='+', to='wagtailimages.Image', help_text='The Image that is shown on top of the page', on_delete=django.db.models.deletion.SET_NULL, blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='title_da', - field=models.CharField(verbose_name='Header Title', max_length=255, blank=True), - ), - migrations.AlterField( - model_name='homepage', - name='title_de', - field=models.CharField(verbose_name='Header Title', max_length=255, blank=True), - ), - migrations.AlterField( - model_name='homepage', - name='title_en', - field=models.CharField(verbose_name='Header Title', max_length=255, blank=True), - ), - migrations.AlterField( - model_name='homepage', - name='title_fr', - field=models.CharField(verbose_name='Header Title', max_length=255, blank=True), - ), - migrations.AlterField( - model_name='homepage', - name='title_it', - field=models.CharField(verbose_name='Header Title', max_length=255, blank=True), - ), - migrations.AlterField( - model_name='homepage', - name='title_sl', - field=models.CharField(verbose_name='Header Title', max_length=255, blank=True), - ), - migrations.AlterField( - model_name='homepage', - name='title_sv', - field=models.CharField(verbose_name='Header Title', max_length=255, blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_da', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('left_image', wagtail.images.blocks.ImageChooserBlock()), ('left_image_text', wagtail.blocks.TextBlock()), ('middle_image', wagtail.images.blocks.ImageChooserBlock()), ('middle_image_text', wagtail.blocks.TextBlock()), ('right_image', wagtail.images.blocks.ImageChooserBlock()), ('right_image_text', wagtail.blocks.TextBlock()), ('circles', wagtail.blocks.BooleanBlock())), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.TextBlock(required=False)))))),), icon='collapse-down'))), verbose_name='body', blank=True, null=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_de', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('left_image', wagtail.images.blocks.ImageChooserBlock()), ('left_image_text', wagtail.blocks.TextBlock()), ('middle_image', wagtail.images.blocks.ImageChooserBlock()), ('middle_image_text', wagtail.blocks.TextBlock()), ('right_image', wagtail.images.blocks.ImageChooserBlock()), ('right_image_text', wagtail.blocks.TextBlock()), ('circles', wagtail.blocks.BooleanBlock())), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.TextBlock(required=False)))))),), icon='collapse-down'))), verbose_name='body', blank=True, null=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_en', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('left_image', wagtail.images.blocks.ImageChooserBlock()), ('left_image_text', wagtail.blocks.TextBlock()), ('middle_image', wagtail.images.blocks.ImageChooserBlock()), ('middle_image_text', wagtail.blocks.TextBlock()), ('right_image', wagtail.images.blocks.ImageChooserBlock()), ('right_image_text', wagtail.blocks.TextBlock()), ('circles', wagtail.blocks.BooleanBlock())), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.TextBlock(required=False)))))),), icon='collapse-down'))), verbose_name='body', blank=True, null=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_fr', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('left_image', wagtail.images.blocks.ImageChooserBlock()), ('left_image_text', wagtail.blocks.TextBlock()), ('middle_image', wagtail.images.blocks.ImageChooserBlock()), ('middle_image_text', wagtail.blocks.TextBlock()), ('right_image', wagtail.images.blocks.ImageChooserBlock()), ('right_image_text', wagtail.blocks.TextBlock()), ('circles', wagtail.blocks.BooleanBlock())), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.TextBlock(required=False)))))),), icon='collapse-down'))), verbose_name='body', blank=True, null=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_it', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('images', wagtail.blocks.StructBlock((('left_image', wagtail.images.blocks.ImageChooserBlock()), ('left_image_text', wagtail.blocks.TextBlock()), ('middle_image', wagtail.images.blocks.ImageChooserBlock()), ('middle_image_text', wagtail.blocks.TextBlock()), ('right_image', wagtail.images.blocks.ImageChooserBlock()), ('right_image_text', wagtail.blocks.TextBlock()), ('circles', wagtail.blocks.BooleanBlock())), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.TextBlock(required=False)))))),), icon='collapse-down'))), verbose_name='body', blank=True, null=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_sl', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('left_image', wagtail.images.blocks.ImageChooserBlock()), ('left_image_text', wagtail.blocks.TextBlock()), ('middle_image', wagtail.images.blocks.ImageChooserBlock()), ('middle_image_text', wagtail.blocks.TextBlock()), ('right_image', wagtail.images.blocks.ImageChooserBlock()), ('right_image_text', wagtail.blocks.TextBlock()), ('circles', wagtail.blocks.BooleanBlock())), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.TextBlock(required=False)))))),), icon='collapse-down'))), verbose_name='body', blank=True, null=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_sv', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('left_image', wagtail.images.blocks.ImageChooserBlock()), ('left_image_text', wagtail.blocks.TextBlock()), ('middle_image', wagtail.images.blocks.ImageChooserBlock()), ('middle_image_text', wagtail.blocks.TextBlock()), ('right_image', wagtail.images.blocks.ImageChooserBlock()), ('right_image_text', wagtail.blocks.TextBlock()), ('circles', wagtail.blocks.BooleanBlock())), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.TextBlock(required=False)))))),), icon='collapse-down'))), verbose_name='body', blank=True, null=True), - ), - migrations.AlterField( - model_name='simplepage', - name='intro_da', - field=models.CharField(verbose_name='Subtitle', max_length=255, blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='intro_de', - field=models.CharField(verbose_name='Subtitle', max_length=255, blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='intro_en', - field=models.CharField(verbose_name='Subtitle', max_length=255, blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='intro_fr', - field=models.CharField(verbose_name='Subtitle', max_length=255, blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='intro_it', - field=models.CharField(verbose_name='Subtitle', max_length=255, blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='intro_sl', - field=models.CharField(verbose_name='Subtitle', max_length=255, blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='intro_sv', - field=models.CharField(verbose_name='Subtitle', max_length=255, blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='title_da', - field=models.CharField(verbose_name='Title', max_length=255, blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='title_de', - field=models.CharField(verbose_name='Title', max_length=255, blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='title_en', - field=models.CharField(verbose_name='Title', max_length=255, blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='title_fr', - field=models.CharField(verbose_name='Title', max_length=255, blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='title_it', - field=models.CharField(verbose_name='Title', max_length=255, blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='title_sl', - field=models.CharField(verbose_name='Title', max_length=255, blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='title_sv', - field=models.CharField(verbose_name='Title', max_length=255, blank=True), - ), - migrations.DeleteModel( - name='AboutPage', - ), - ] diff --git a/home/migrations/0010_auto_20160704_1313.py b/home/migrations/0010_auto_20160704_1313.py deleted file mode 100644 index 87db88a4e..000000000 --- a/home/migrations/0010_auto_20160704_1313.py +++ /dev/null @@ -1,104 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models -import wagtail.images.blocks -import wagtail.fields -import wagtail.snippets.blocks -import wagtail.embeds.blocks -import home.models -import wagtail.blocks - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0009_auto_20160208_1401'), - ] - - operations = [ - migrations.CreateModel( - name='RSSImport', - fields=[ - ('id', models.AutoField(verbose_name='ID', auto_created=True, primary_key=True, serialize=False)), - ('url', models.URLField(null=True, blank=True)), - ('rss_title', models.CharField(max_length=255)), - ('rss_title_de', models.CharField(blank=True, max_length=255)), - ('rss_title_it', models.CharField(blank=True, max_length=255)), - ('rss_title_fr', models.CharField(blank=True, max_length=255)), - ('rss_title_sv', models.CharField(blank=True, max_length=255)), - ('rss_title_sl', models.CharField(blank=True, max_length=255)), - ('rss_title_da', models.CharField(blank=True, max_length=255)), - ], - ), - migrations.AlterField( - model_name='homepage', - name='body_da', - field=wagtail.fields.StreamField((('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation')], icon='cup'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title'))))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), null=True, blank=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_de', - field=wagtail.fields.StreamField((('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation')], icon='cup'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title'))))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), null=True, blank=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_en', - field=wagtail.fields.StreamField((('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation')], icon='cup'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title'))))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_fr', - field=wagtail.fields.StreamField((('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation')], icon='cup'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title'))))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), null=True, blank=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_it', - field=wagtail.fields.StreamField((('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation')], icon='cup'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title'))))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), null=True, blank=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_sl', - field=wagtail.fields.StreamField((('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation')], icon='cup'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title'))))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), null=True, blank=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_sv', - field=wagtail.fields.StreamField((('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation')], icon='cup'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title'))))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), null=True, blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_da', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation')], icon='cup'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, help_text='', choices=[('4', 'three columns'), ('6', 'two columns')], icon='cup'))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), null=True, verbose_name='body', blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_de', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation')], icon='cup'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, help_text='', choices=[('4', 'three columns'), ('6', 'two columns')], icon='cup'))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), null=True, verbose_name='body', blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_en', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation')], icon='cup'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, help_text='', choices=[('4', 'three columns'), ('6', 'two columns')], icon='cup'))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), null=True, verbose_name='body', blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_fr', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation')], icon='cup'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, help_text='', choices=[('4', 'three columns'), ('6', 'two columns')], icon='cup'))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), null=True, verbose_name='body', blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_it', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation')], icon='cup'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, help_text='', choices=[('4', 'three columns'), ('6', 'two columns')], icon='cup'))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), null=True, verbose_name='body', blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_sl', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation')], icon='cup'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, help_text='', choices=[('4', 'three columns'), ('6', 'two columns')], icon='cup'))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), null=True, verbose_name='body', blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_sv', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation')], icon='cup'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, help_text='', choices=[('4', 'three columns'), ('6', 'two columns')], icon='cup'))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), null=True, verbose_name='body', blank=True), - ), - ] diff --git a/home/migrations/0011_auto_20160830_1316.py b/home/migrations/0011_auto_20160830_1316.py deleted file mode 100644 index 7a2643234..000000000 --- a/home/migrations/0011_auto_20160830_1316.py +++ /dev/null @@ -1,90 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models -import home.models -import wagtail.fields -import wagtail.images.blocks -import wagtail.embeds.blocks -import wagtail.blocks -import wagtail.snippets.blocks - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0010_auto_20160704_1313'), - ] - - operations = [ - migrations.AlterField( - model_name='homepage', - name='body_da', - field=wagtail.fields.StreamField((('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(help_text='How should this block be displayed?', required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], icon='cup')), ('alignment', wagtail.blocks.ChoiceBlock(help_text='How should the text and image be aligned?', default='vertical', choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title'))))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),))), ('column_block', wagtail.blocks.StructBlock((('title_col1', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)))))), null=True, blank=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_de', - field=wagtail.fields.StreamField((('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(help_text='How should this block be displayed?', required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], icon='cup')), ('alignment', wagtail.blocks.ChoiceBlock(help_text='How should the text and image be aligned?', default='vertical', choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title'))))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),))), ('column_block', wagtail.blocks.StructBlock((('title_col1', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)))))), null=True, blank=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_en', - field=wagtail.fields.StreamField((('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(help_text='How should this block be displayed?', required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], icon='cup')), ('alignment', wagtail.blocks.ChoiceBlock(help_text='How should the text and image be aligned?', default='vertical', choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title'))))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),))), ('column_block', wagtail.blocks.StructBlock((('title_col1', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)))))), null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_fr', - field=wagtail.fields.StreamField((('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(help_text='How should this block be displayed?', required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], icon='cup')), ('alignment', wagtail.blocks.ChoiceBlock(help_text='How should the text and image be aligned?', default='vertical', choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title'))))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),))), ('column_block', wagtail.blocks.StructBlock((('title_col1', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)))))), null=True, blank=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_it', - field=wagtail.fields.StreamField((('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(help_text='How should this block be displayed?', required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], icon='cup')), ('alignment', wagtail.blocks.ChoiceBlock(help_text='How should the text and image be aligned?', default='vertical', choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title'))))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),))), ('column_block', wagtail.blocks.StructBlock((('title_col1', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)))))), null=True, blank=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_sl', - field=wagtail.fields.StreamField((('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(help_text='How should this block be displayed?', required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], icon='cup')), ('alignment', wagtail.blocks.ChoiceBlock(help_text='How should the text and image be aligned?', default='vertical', choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title'))))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),))), ('column_block', wagtail.blocks.StructBlock((('title_col1', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)))))), null=True, blank=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_sv', - field=wagtail.fields.StreamField((('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(help_text='How should this block be displayed?', required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], icon='cup')), ('alignment', wagtail.blocks.ChoiceBlock(help_text='How should the text and image be aligned?', default='vertical', choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title'))))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),))), ('column_block', wagtail.blocks.StructBlock((('title_col1', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)))))), null=True, blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_da', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(help_text='How should this block be displayed?', required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], icon='cup')), ('alignment', wagtail.blocks.ChoiceBlock(help_text='How should the text and image be aligned?', default='vertical', choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(help_text='', required=False, choices=[('4', 'three columns'), ('6', 'two columns')], icon='cup'))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), null=True, blank=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_de', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(help_text='How should this block be displayed?', required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], icon='cup')), ('alignment', wagtail.blocks.ChoiceBlock(help_text='How should the text and image be aligned?', default='vertical', choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(help_text='', required=False, choices=[('4', 'three columns'), ('6', 'two columns')], icon='cup'))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), null=True, blank=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_en', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(help_text='How should this block be displayed?', required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], icon='cup')), ('alignment', wagtail.blocks.ChoiceBlock(help_text='How should the text and image be aligned?', default='vertical', choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(help_text='', required=False, choices=[('4', 'three columns'), ('6', 'two columns')], icon='cup'))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), null=True, blank=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_fr', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(help_text='How should this block be displayed?', required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], icon='cup')), ('alignment', wagtail.blocks.ChoiceBlock(help_text='How should the text and image be aligned?', default='vertical', choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(help_text='', required=False, choices=[('4', 'three columns'), ('6', 'two columns')], icon='cup'))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), null=True, blank=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_it', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(help_text='How should this block be displayed?', required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], icon='cup')), ('alignment', wagtail.blocks.ChoiceBlock(help_text='How should the text and image be aligned?', default='vertical', choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(help_text='', required=False, choices=[('4', 'three columns'), ('6', 'two columns')], icon='cup'))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), null=True, blank=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_sl', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(help_text='How should this block be displayed?', required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], icon='cup')), ('alignment', wagtail.blocks.ChoiceBlock(help_text='How should the text and image be aligned?', default='vertical', choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(help_text='', required=False, choices=[('4', 'three columns'), ('6', 'two columns')], icon='cup'))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), null=True, blank=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_sv', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(help_text='How should this block be displayed?', required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], icon='cup')), ('alignment', wagtail.blocks.ChoiceBlock(help_text='How should the text and image be aligned?', default='vertical', choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(help_text='', required=False, choices=[('4', 'three columns'), ('6', 'two columns')], icon='cup'))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), null=True, blank=True, verbose_name='body'), - ), - ] diff --git a/home/migrations/0012_add_configurable_video_player_iframe.py b/home/migrations/0012_add_configurable_video_player_iframe.py deleted file mode 100644 index cc3e52f04..000000000 --- a/home/migrations/0012_add_configurable_video_player_iframe.py +++ /dev/null @@ -1,20 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0011_auto_20160830_1316'), - ] - - operations = [ - migrations.AddField( - model_name='homepage', - name='videoplayer_url', - field=models.URLField(default='https://player.vimeo.com/video/43476107'), - preserve_default=False, - ), - ] diff --git a/home/migrations/0013_auto_20161108_1554.py b/home/migrations/0013_auto_20161108_1554.py deleted file mode 100644 index 8673d84c2..000000000 --- a/home/migrations/0013_auto_20161108_1554.py +++ /dev/null @@ -1,54 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models -import wagtail.snippets.blocks -import wagtail.fields -import wagtail.images.blocks -import wagtail.blocks -import home.models - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0012_add_configurable_video_player_iframe'), - ] - - operations = [ - migrations.AlterField( - model_name='simplepage', - name='body_da', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup')), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', default='vertical', icon='cup'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup'))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport)),)))), null=True, verbose_name='body', blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_de', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup')), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', default='vertical', icon='cup'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup'))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport)),)))), null=True, verbose_name='body', blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_en', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup')), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', default='vertical', icon='cup'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup'))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport)),)))), null=True, verbose_name='body', blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_fr', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup')), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', default='vertical', icon='cup'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup'))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport)),)))), null=True, verbose_name='body', blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_it', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup')), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', default='vertical', icon='cup'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup'))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport)),)))), null=True, verbose_name='body', blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_sl', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup')), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', default='vertical', icon='cup'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup'))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport)),)))), null=True, verbose_name='body', blank=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_sv', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup')), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', default='vertical', icon='cup'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup'))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport)),)))), null=True, verbose_name='body', blank=True), - ), - ] diff --git a/home/migrations/0014_rename_fields_for_consistency.py b/home/migrations/0014_rename_fields_for_consistency.py deleted file mode 100644 index 8d186639b..000000000 --- a/home/migrations/0014_rename_fields_for_consistency.py +++ /dev/null @@ -1,24 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0013_auto_20161108_1554'), - ] - - operations = [ - migrations.RenameField( - model_name='menuitem', - old_name='menu_title', - new_name='menu_title_en', - ), - migrations.RenameField( - model_name='rssimport', - old_name='rss_title', - new_name='rss_title_en', - ), - ] diff --git a/home/migrations/0015_add_manual_index_and_section_page_and_detail.py b/home/migrations/0015_add_manual_index_and_section_page_and_detail.py deleted file mode 100644 index 39e7bd6f4..000000000 --- a/home/migrations/0015_add_manual_index_and_section_page_and_detail.py +++ /dev/null @@ -1,123 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models -import wagtail.embeds.blocks -import wagtail.snippets.blocks -import django.db.models.deletion -import wagtail.images.blocks -import wagtail.fields -import wagtail.blocks -import home.models - - -class Migration(migrations.Migration): - - dependencies = [ - ('wagtailimages', '0015_fill_filter_spec_field'), - ('wagtailcore', '0030_index_on_pagerevision_created_at'), - ('home', '0014_rename_fields_for_consistency'), - ] - - operations = [ - migrations.CreateModel( - name='ManualsDetailPage', - fields=[ - ('page_ptr', models.OneToOneField(serialize=False, primary_key=True, to='wagtailcore.Page', auto_created=True, parent_link=True, on_delete=models.CASCADE)), - ('title_en', models.CharField(verbose_name='Title', max_length=150, blank=True)), - ('title_de', models.CharField(verbose_name='Title', max_length=150, blank=True)), - ('title_it', models.CharField(verbose_name='Title', max_length=150, blank=True)), - ('title_fr', models.CharField(verbose_name='Title', max_length=150, blank=True)), - ('title_sv', models.CharField(verbose_name='Title', max_length=150, blank=True)), - ('title_sl', models.CharField(verbose_name='Title', max_length=150, blank=True)), - ('title_da', models.CharField(verbose_name='Title', max_length=150, blank=True)), - ('body_en', wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')])), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup', help_text='How should the text and image be aligned?', default='vertical'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='', choices=[('4', 'three columns'), ('6', 'two columns')]))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),)))), null=True, blank=True, verbose_name='body')), - ('body_de', wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')])), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup', help_text='How should the text and image be aligned?', default='vertical'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='', choices=[('4', 'three columns'), ('6', 'two columns')]))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),)))), null=True, blank=True, verbose_name='body')), - ('body_it', wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')])), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup', help_text='How should the text and image be aligned?', default='vertical'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='', choices=[('4', 'three columns'), ('6', 'two columns')]))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),)))), null=True, blank=True, verbose_name='body')), - ('body_fr', wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')])), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup', help_text='How should the text and image be aligned?', default='vertical'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='', choices=[('4', 'three columns'), ('6', 'two columns')]))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),)))), null=True, blank=True, verbose_name='body')), - ('body_sv', wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')])), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup', help_text='How should the text and image be aligned?', default='vertical'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='', choices=[('4', 'three columns'), ('6', 'two columns')]))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),)))), null=True, blank=True, verbose_name='body')), - ('body_sl', wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')])), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup', help_text='How should the text and image be aligned?', default='vertical'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='', choices=[('4', 'three columns'), ('6', 'two columns')]))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),)))), null=True, blank=True, verbose_name='body')), - ('body_da', wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')])), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup', help_text='How should the text and image be aligned?', default='vertical'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='', choices=[('4', 'three columns'), ('6', 'two columns')]))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),)))), null=True, blank=True, verbose_name='body')), - ('color', models.CharField(choices=[('orange', 'Orange'), ('purple', 'Purple'), ('blue', 'Blue'), ('pink', 'Pink'), ('turquoise', 'Turquoise')], max_length=9, blank=True, default='blue')), - ('image', models.ForeignKey(on_delete=django.db.models.deletion.SET_NULL, null=True, related_name='+', to='wagtailimages.Image', blank=True)), - ], - options={ - 'abstract': False, - }, - bases=('wagtailcore.page',), - ), - migrations.CreateModel( - name='ManualsIndex', - fields=[ - ('page_ptr', models.OneToOneField(serialize=False, primary_key=True, to='wagtailcore.Page', auto_created=True, parent_link=True, on_delete=models.CASCADE)), - ('title_en', models.CharField(verbose_name='Title', max_length=150, blank=True)), - ('title_de', models.CharField(verbose_name='Title', max_length=150, blank=True)), - ('title_it', models.CharField(verbose_name='Title', max_length=150, blank=True)), - ('title_fr', models.CharField(verbose_name='Title', max_length=150, blank=True)), - ('title_sv', models.CharField(verbose_name='Title', max_length=150, blank=True)), - ('title_sl', models.CharField(verbose_name='Title', max_length=150, blank=True)), - ('title_da', models.CharField(verbose_name='Title', max_length=150, blank=True)), - ('body_en', wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')])), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup', help_text='How should the text and image be aligned?', default='vertical'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='', choices=[('4', 'three columns'), ('6', 'two columns')]))), icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),)))), null=True, blank=True, verbose_name='body')), - ('body_de', wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')])), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup', help_text='How should the text and image be aligned?', default='vertical'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='', choices=[('4', 'three columns'), ('6', 'two columns')]))), icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),)))), null=True, blank=True, verbose_name='body')), - ('body_it', wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')])), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup', help_text='How should the text and image be aligned?', default='vertical'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='', choices=[('4', 'three columns'), ('6', 'two columns')]))), icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),)))), null=True, blank=True, verbose_name='body')), - ('body_fr', wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')])), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup', help_text='How should the text and image be aligned?', default='vertical'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='', choices=[('4', 'three columns'), ('6', 'two columns')]))), icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),)))), null=True, blank=True, verbose_name='body')), - ('body_sv', wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')])), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup', help_text='How should the text and image be aligned?', default='vertical'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='', choices=[('4', 'three columns'), ('6', 'two columns')]))), icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),)))), null=True, blank=True, verbose_name='body')), - ('body_sl', wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')])), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup', help_text='How should the text and image be aligned?', default='vertical'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='', choices=[('4', 'three columns'), ('6', 'two columns')]))), icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),)))), null=True, blank=True, verbose_name='body')), - ('body_da', wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='How should this block be displayed?', choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')])), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup', help_text='How should the text and image be aligned?', default='vertical'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, icon='cup', help_text='', choices=[('4', 'three columns'), ('6', 'two columns')]))), icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),)))), null=True, blank=True, verbose_name='body')), - ], - options={ - 'abstract': False, - }, - bases=('wagtailcore.page',), - ), - migrations.CreateModel( - name='ManualsSectionPage', - fields=[ - ('page_ptr', models.OneToOneField(serialize=False, primary_key=True, to='wagtailcore.Page', auto_created=True, parent_link=True, on_delete=models.CASCADE)), - ('title_en', models.CharField(verbose_name='Title', max_length=150, blank=True)), - ('title_de', models.CharField(verbose_name='Title', max_length=150, blank=True)), - ('title_it', models.CharField(verbose_name='Title', max_length=150, blank=True)), - ('title_fr', models.CharField(verbose_name='Title', max_length=150, blank=True)), - ('title_sv', models.CharField(verbose_name='Title', max_length=150, blank=True)), - ('title_sl', models.CharField(verbose_name='Title', max_length=150, blank=True)), - ('title_da', models.CharField(verbose_name='Title', max_length=150, blank=True)), - ('description_en', models.CharField(verbose_name='Description', max_length=260, blank=True)), - ('description_de', models.CharField(verbose_name='Description', max_length=260, blank=True)), - ('description_it', models.CharField(verbose_name='Description', max_length=260, blank=True)), - ('description_fr', models.CharField(verbose_name='Description', max_length=260, blank=True)), - ('description_sv', models.CharField(verbose_name='Description', max_length=260, blank=True)), - ('description_sl', models.CharField(verbose_name='Description', max_length=260, blank=True)), - ('description_da', models.CharField(verbose_name='Description', max_length=260, blank=True)), - ('body', wagtail.fields.StreamField((('snippet', wagtail.snippets.blocks.SnippetChooserBlock(template='home/blocks/page_collection_block.html', target_model=home.models.snippets.PageCollection, required=False)),))), - ('color', models.CharField(choices=[('orange', 'Orange'), ('purple', 'Purple'), ('blue', 'Blue'), ('pink', 'Pink'), ('turquoise', 'Turquoise')], max_length=9, default='blue')), - ('image', models.ForeignKey(on_delete=django.db.models.deletion.SET_NULL, null=True, related_name='+', to='wagtailimages.Image', blank=True)), - ], - options={ - 'abstract': False, - }, - bases=('wagtailcore.page',), - ), - migrations.CreateModel( - name='PageCollection', - fields=[ - ('id', models.AutoField(auto_created=True, serialize=False, primary_key=True, verbose_name='ID')), - ('title_en', models.CharField(max_length=80)), - ('title_de', models.CharField(max_length=80, blank=True)), - ('title_it', models.CharField(max_length=80, blank=True)), - ('title_fr', models.CharField(max_length=80, blank=True)), - ('title_sv', models.CharField(max_length=80, blank=True)), - ('title_sl', models.CharField(max_length=80, blank=True)), - ('title_da', models.CharField(max_length=80, blank=True)), - ('highlighted_page', models.ForeignKey(on_delete=django.db.models.deletion.SET_NULL, null=True, to='wagtailcore.Page')), - ('image', models.ForeignKey(on_delete=django.db.models.deletion.SET_NULL, null=True, related_name='+', help_text='The Image that is shown on top of the page', to='wagtailimages.Image', blank=True)), - ('page_1', models.ForeignKey(on_delete=django.db.models.deletion.SET_NULL, null=True, related_name='+', to='wagtailcore.Page', blank=True)), - ('page_2', models.ForeignKey(on_delete=django.db.models.deletion.SET_NULL, null=True, related_name='+', to='wagtailcore.Page', blank=True)), - ('page_3', models.ForeignKey(on_delete=django.db.models.deletion.SET_NULL, null=True, related_name='+', to='wagtailcore.Page', blank=True)), - ('page_4', models.ForeignKey(on_delete=django.db.models.deletion.SET_NULL, null=True, related_name='+', to='wagtailcore.Page', blank=True)), - ('page_5', models.ForeignKey(on_delete=django.db.models.deletion.SET_NULL, null=True, related_name='+', to='wagtailcore.Page', blank=True)), - ('page_6', models.ForeignKey(on_delete=django.db.models.deletion.SET_NULL, null=True, related_name='+', to='wagtailcore.Page', blank=True)), - ('page_7', models.ForeignKey(on_delete=django.db.models.deletion.SET_NULL, null=True, related_name='+', to='wagtailcore.Page', blank=True)), - ('page_8', models.ForeignKey(on_delete=django.db.models.deletion.SET_NULL, null=True, related_name='+', to='wagtailcore.Page', blank=True)), - ], - ), - ] diff --git a/home/migrations/0016_change_streamfields_for_detail.py b/home/migrations/0016_change_streamfields_for_detail.py deleted file mode 100644 index 7409b1b97..000000000 --- a/home/migrations/0016_change_streamfields_for_detail.py +++ /dev/null @@ -1,63 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models -import wagtail.embeds.blocks -import wagtail.images.blocks -import wagtail.fields -import wagtail.blocks - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0015_add_manual_index_and_section_page_and_detail'), - ] - - operations = [ - migrations.AlterField( - model_name='manualsdetailpage', - name='body_da', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down'))), null=True, blank=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_de', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down'))), null=True, blank=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_en', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down'))), null=True, blank=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_fr', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down'))), null=True, blank=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_it', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down'))), null=True, blank=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_sl', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down'))), null=True, blank=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_sv', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down'))), null=True, blank=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='color', - field=models.CharField(max_length=9, blank=True, choices=[('turquoise', 'Turquoise'), ('purple', 'Purple'), ('pink', 'Pink'), ('orange', 'Orange'), ('blue', 'Blue')], default='blue'), - ), - migrations.AlterField( - model_name='manualssectionpage', - name='color', - field=models.CharField(max_length=9, choices=[('turquoise', 'Turquoise'), ('purple', 'Purple'), ('pink', 'Pink'), ('orange', 'Orange'), ('blue', 'Blue')], default='blue'), - ), - ] diff --git a/home/migrations/0017_auto_20170206_1103.py b/home/migrations/0017_auto_20170206_1103.py deleted file mode 100644 index d8cfd5de4..000000000 --- a/home/migrations/0017_auto_20170206_1103.py +++ /dev/null @@ -1,33 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0016_change_streamfields_for_detail'), - ] - - operations = [ - migrations.RemoveField( - model_name='pagecollection', - name='highlighted_page', - ), - migrations.AddField( - model_name='pagecollection', - name='intro_text', - field=models.CharField(blank=True, max_length=250), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='color', - field=models.CharField(blank=True, max_length=9, default='blue', choices=[('blue', 'Blue'), ('purple', 'Purple'), ('pink', 'Pink'), ('orange', 'Orange'), ('turquoise', 'Turquoise')]), - ), - migrations.AlterField( - model_name='manualssectionpage', - name='color', - field=models.CharField(max_length=9, default='blue', choices=[('blue', 'Blue'), ('purple', 'Purple'), ('pink', 'Pink'), ('orange', 'Orange'), ('turquoise', 'Turquoise')]), - ), - ] diff --git a/home/migrations/0018_add_ukrainian_greek_russian_translations.py b/home/migrations/0018_add_ukrainian_greek_russian_translations.py deleted file mode 100644 index f89e691ee..000000000 --- a/home/migrations/0018_add_ukrainian_greek_russian_translations.py +++ /dev/null @@ -1,240 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models -import wagtail.snippets.blocks -import wagtail.images.blocks -import wagtail.fields -import home.models -import wagtail.blocks -import wagtail.embeds.blocks - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0017_auto_20170206_1103'), - ] - - operations = [ - migrations.AddField( - model_name='homepage', - name='body_el', - field=wagtail.fields.StreamField((('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], icon='cup', help_text='How should this block be displayed?', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup', default='vertical', help_text='How should the text and image be aligned?'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title'))))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),))), ('column_block', wagtail.blocks.StructBlock((('title_col1', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)))))), blank=True, null=True), - ), - migrations.AddField( - model_name='homepage', - name='body_ru', - field=wagtail.fields.StreamField((('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], icon='cup', help_text='How should this block be displayed?', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup', default='vertical', help_text='How should the text and image be aligned?'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title'))))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),))), ('column_block', wagtail.blocks.StructBlock((('title_col1', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)))))), blank=True, null=True), - ), - migrations.AddField( - model_name='homepage', - name='body_uk', - field=wagtail.fields.StreamField((('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], icon='cup', help_text='How should this block be displayed?', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup', default='vertical', help_text='How should the text and image be aligned?'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title'))))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),))), ('column_block', wagtail.blocks.StructBlock((('title_col1', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)))))), blank=True, null=True), - ), - migrations.AddField( - model_name='homepage', - name='title_el', - field=models.CharField(verbose_name='Header Title', blank=True, max_length=255), - ), - migrations.AddField( - model_name='homepage', - name='title_ru', - field=models.CharField(verbose_name='Header Title', blank=True, max_length=255), - ), - migrations.AddField( - model_name='homepage', - name='title_uk', - field=models.CharField(verbose_name='Header Title', blank=True, max_length=255), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='body_el', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down'))), verbose_name='body', blank=True, null=True), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='body_ru', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down'))), verbose_name='body', blank=True, null=True), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='body_uk', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down'))), verbose_name='body', blank=True, null=True), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='title_el', - field=models.CharField(verbose_name='Title', blank=True, max_length=150), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='title_ru', - field=models.CharField(verbose_name='Title', blank=True, max_length=150), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='title_uk', - field=models.CharField(verbose_name='Title', blank=True, max_length=150), - ), - migrations.AddField( - model_name='manualsindex', - name='body_el', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], icon='cup', help_text='How should this block be displayed?', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup', default='vertical', help_text='How should the text and image be aligned?'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], icon='cup', help_text='', required=False))), icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),)))), verbose_name='body', blank=True, null=True), - ), - migrations.AddField( - model_name='manualsindex', - name='body_ru', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], icon='cup', help_text='How should this block be displayed?', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup', default='vertical', help_text='How should the text and image be aligned?'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], icon='cup', help_text='', required=False))), icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),)))), verbose_name='body', blank=True, null=True), - ), - migrations.AddField( - model_name='manualsindex', - name='body_uk', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], icon='cup', help_text='How should this block be displayed?', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup', default='vertical', help_text='How should the text and image be aligned?'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], icon='cup', help_text='', required=False))), icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),)))), verbose_name='body', blank=True, null=True), - ), - migrations.AddField( - model_name='manualsindex', - name='title_el', - field=models.CharField(verbose_name='Title', blank=True, max_length=150), - ), - migrations.AddField( - model_name='manualsindex', - name='title_ru', - field=models.CharField(verbose_name='Title', blank=True, max_length=150), - ), - migrations.AddField( - model_name='manualsindex', - name='title_uk', - field=models.CharField(verbose_name='Title', blank=True, max_length=150), - ), - migrations.AddField( - model_name='manualssectionpage', - name='description_el', - field=models.CharField(verbose_name='Description', blank=True, max_length=260), - ), - migrations.AddField( - model_name='manualssectionpage', - name='description_ru', - field=models.CharField(verbose_name='Description', blank=True, max_length=260), - ), - migrations.AddField( - model_name='manualssectionpage', - name='description_uk', - field=models.CharField(verbose_name='Description', blank=True, max_length=260), - ), - migrations.AddField( - model_name='manualssectionpage', - name='title_el', - field=models.CharField(verbose_name='Title', blank=True, max_length=150), - ), - migrations.AddField( - model_name='manualssectionpage', - name='title_ru', - field=models.CharField(verbose_name='Title', blank=True, max_length=150), - ), - migrations.AddField( - model_name='manualssectionpage', - name='title_uk', - field=models.CharField(verbose_name='Title', blank=True, max_length=150), - ), - migrations.AddField( - model_name='menuitem', - name='menu_title_el', - field=models.CharField(blank=True, max_length=255), - ), - migrations.AddField( - model_name='menuitem', - name='menu_title_ru', - field=models.CharField(blank=True, max_length=255), - ), - migrations.AddField( - model_name='menuitem', - name='menu_title_uk', - field=models.CharField(blank=True, max_length=255), - ), - migrations.AddField( - model_name='pagecollection', - name='title_el', - field=models.CharField(blank=True, max_length=80), - ), - migrations.AddField( - model_name='pagecollection', - name='title_ru', - field=models.CharField(blank=True, max_length=80), - ), - migrations.AddField( - model_name='pagecollection', - name='title_uk', - field=models.CharField(blank=True, max_length=80), - ), - migrations.AddField( - model_name='rssimport', - name='rss_title_el', - field=models.CharField(blank=True, max_length=255), - ), - migrations.AddField( - model_name='rssimport', - name='rss_title_ru', - field=models.CharField(blank=True, max_length=255), - ), - migrations.AddField( - model_name='rssimport', - name='rss_title_uk', - field=models.CharField(blank=True, max_length=255), - ), - migrations.AddField( - model_name='simplepage', - name='body_el', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], icon='cup', help_text='How should this block be displayed?', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup', default='vertical', help_text='How should the text and image be aligned?'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], icon='cup', help_text='', required=False))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), verbose_name='body', blank=True, null=True), - ), - migrations.AddField( - model_name='simplepage', - name='body_ru', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], icon='cup', help_text='How should this block be displayed?', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup', default='vertical', help_text='How should the text and image be aligned?'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], icon='cup', help_text='', required=False))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), verbose_name='body', blank=True, null=True), - ), - migrations.AddField( - model_name='simplepage', - name='body_uk', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], icon='cup', help_text='How should this block be displayed?', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], icon='cup', default='vertical', help_text='How should the text and image be aligned?'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], icon='cup', help_text='', required=False))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), verbose_name='body', blank=True, null=True), - ), - migrations.AddField( - model_name='simplepage', - name='intro_el', - field=models.CharField(verbose_name='Subtitle', blank=True, max_length=255), - ), - migrations.AddField( - model_name='simplepage', - name='intro_ru', - field=models.CharField(verbose_name='Subtitle', blank=True, max_length=255), - ), - migrations.AddField( - model_name='simplepage', - name='intro_uk', - field=models.CharField(verbose_name='Subtitle', blank=True, max_length=255), - ), - migrations.AddField( - model_name='simplepage', - name='title_el', - field=models.CharField(verbose_name='Title', blank=True, max_length=255), - ), - migrations.AddField( - model_name='simplepage', - name='title_ru', - field=models.CharField(verbose_name='Title', blank=True, max_length=255), - ), - migrations.AddField( - model_name='simplepage', - name='title_uk', - field=models.CharField(verbose_name='Title', blank=True, max_length=255), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='color', - field=models.CharField(choices=[('orange', 'Orange'), ('turquoise', 'Turquoise'), ('purple', 'Purple'), ('blue', 'Blue'), ('pink', 'Pink')], blank=True, default='blue', max_length=9), - ), - migrations.AlterField( - model_name='manualssectionpage', - name='color', - field=models.CharField(choices=[('orange', 'Orange'), ('turquoise', 'Turquoise'), ('purple', 'Purple'), ('blue', 'Blue'), ('pink', 'Pink')], default='blue', max_length=9), - ), - ] diff --git a/home/migrations/0019_change_color_coding_for_manual_detail_page.py b/home/migrations/0019_change_color_coding_for_manual_detail_page.py deleted file mode 100644 index 034926c60..000000000 --- a/home/migrations/0019_change_color_coding_for_manual_detail_page.py +++ /dev/null @@ -1,24 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0018_add_ukrainian_greek_russian_translations'), - ] - - operations = [ - migrations.AlterField( - model_name='manualsdetailpage', - name='color', - field=models.CharField(default='blue', blank=True, choices=[('blue', 'Blue'), ('orange', 'Orange'), ('turquoise', 'Turquoise'), ('pink', 'Pink'), ('purple', 'Purple')], max_length=9), - ), - migrations.AlterField( - model_name='manualssectionpage', - name='color', - field=models.CharField(default='blue', choices=[('blue', 'Blue'), ('orange', 'Orange'), ('turquoise', 'Turquoise'), ('pink', 'Pink'), ('purple', 'Purple')], max_length=9), - ), - ] diff --git a/home/migrations/0020_homepage_add_editable_header.py b/home/migrations/0020_homepage_add_editable_header.py deleted file mode 100644 index 4682a33e7..000000000 --- a/home/migrations/0020_homepage_add_editable_header.py +++ /dev/null @@ -1,64 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0019_change_color_coding_for_manual_detail_page'), - ] - - operations = [ - migrations.AddField( - model_name='homepage', - name='intro_da', - field=models.CharField(verbose_name='Subtitle', max_length=255, blank=True, default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.'), - ), - migrations.AddField( - model_name='homepage', - name='intro_de', - field=models.CharField(verbose_name='Subtitle', max_length=255, blank=True, default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.'), - ), - migrations.AddField( - model_name='homepage', - name='intro_el', - field=models.CharField(verbose_name='Subtitle', max_length=255, blank=True, default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.'), - ), - migrations.AddField( - model_name='homepage', - name='intro_en', - field=models.CharField(verbose_name='Subtitle', max_length=255, blank=True, default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.'), - ), - migrations.AddField( - model_name='homepage', - name='intro_fr', - field=models.CharField(verbose_name='Subtitle', max_length=255, blank=True, default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.'), - ), - migrations.AddField( - model_name='homepage', - name='intro_it', - field=models.CharField(verbose_name='Subtitle', max_length=255, blank=True, default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.'), - ), - migrations.AddField( - model_name='homepage', - name='intro_ru', - field=models.CharField(verbose_name='Subtitle', max_length=255, blank=True, default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.'), - ), - migrations.AddField( - model_name='homepage', - name='intro_sl', - field=models.CharField(verbose_name='Subtitle', max_length=255, blank=True, default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.'), - ), - migrations.AddField( - model_name='homepage', - name='intro_sv', - field=models.CharField(verbose_name='Subtitle', max_length=255, blank=True, default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.'), - ), - migrations.AddField( - model_name='homepage', - name='intro_uk', - field=models.CharField(verbose_name='Subtitle', max_length=255, blank=True, default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.'), - ), - ] diff --git a/home/migrations/0021_add_georgian.py b/home/migrations/0021_add_georgian.py deleted file mode 100644 index 5d0f26047..000000000 --- a/home/migrations/0021_add_georgian.py +++ /dev/null @@ -1,95 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models -import wagtail.fields -import home.models -import wagtail.blocks -import wagtail.snippets.blocks -import wagtail.images.blocks -import wagtail.embeds.blocks - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0020_homepage_add_editable_header'), - ] - - operations = [ - migrations.AddField( - model_name='homepage', - name='body_ka', - field=wagtail.fields.StreamField((('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(icon='cup', required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?')), ('alignment', wagtail.blocks.ChoiceBlock(icon='cup', choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title'))))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport)),))), ('column_block', wagtail.blocks.StructBlock((('title_col1', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)))))), null=True, blank=True), - ), - migrations.AddField( - model_name='homepage', - name='intro_ka', - field=models.CharField(default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.', max_length=255, verbose_name='Subtitle', blank=True), - ), - migrations.AddField( - model_name='homepage', - name='title_ka', - field=models.CharField(max_length=255, verbose_name='Header Title', blank=True), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='body_ka', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down'))), null=True, verbose_name='body', blank=True), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='title_ka', - field=models.CharField(max_length=150, verbose_name='Title', blank=True), - ), - migrations.AddField( - model_name='manualsindex', - name='body_ka', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(icon='cup', required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?')), ('alignment', wagtail.blocks.ChoiceBlock(icon='cup', choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(icon='cup', required=False, choices=[('4', 'three columns'), ('6', 'two columns')], help_text=''))), icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),)))), null=True, verbose_name='body', blank=True), - ), - migrations.AddField( - model_name='manualsindex', - name='title_ka', - field=models.CharField(max_length=150, verbose_name='Title', blank=True), - ), - migrations.AddField( - model_name='manualssectionpage', - name='description_ka', - field=models.CharField(max_length=260, verbose_name='Description', blank=True), - ), - migrations.AddField( - model_name='manualssectionpage', - name='title_ka', - field=models.CharField(max_length=150, verbose_name='Title', blank=True), - ), - migrations.AddField( - model_name='menuitem', - name='menu_title_ka', - field=models.CharField(max_length=255, blank=True), - ), - migrations.AddField( - model_name='pagecollection', - name='title_ka', - field=models.CharField(max_length=80, blank=True), - ), - migrations.AddField( - model_name='rssimport', - name='rss_title_ka', - field=models.CharField(max_length=255, blank=True), - ), - migrations.AddField( - model_name='simplepage', - name='body_ka', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(icon='cup', required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?')), ('alignment', wagtail.blocks.ChoiceBlock(icon='cup', choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(icon='cup', required=False, choices=[('4', 'three columns'), ('6', 'two columns')], help_text=''))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport)),)))), null=True, verbose_name='body', blank=True), - ), - migrations.AddField( - model_name='simplepage', - name='intro_ka', - field=models.CharField(max_length=255, verbose_name='Subtitle', blank=True), - ), - migrations.AddField( - model_name='simplepage', - name='title_ka', - field=models.CharField(max_length=255, verbose_name='Title', blank=True), - ), - ] diff --git a/home/migrations/0021_add_view_link_field.py b/home/migrations/0021_add_view_link_field.py deleted file mode 100644 index 6d37033ad..000000000 --- a/home/migrations/0021_add_view_link_field.py +++ /dev/null @@ -1,24 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0020_homepage_add_editable_header'), - ] - - operations = [ - migrations.AddField( - model_name='menuitem', - name='link_view', - field=models.CharField(blank=True, max_length=100, choices=[('organisation-list', 'List of Organisations')], null=True), - ), - migrations.AlterField( - model_name='menuitem', - name='link_page', - field=models.ForeignKey(blank=True, to='wagtailcore.Page', null=True, related_name='+', on_delete=models.CASCADE), - ), - ] diff --git a/home/migrations/0022_add_macedonian.py b/home/migrations/0022_add_macedonian.py deleted file mode 100644 index 55f50331c..000000000 --- a/home/migrations/0022_add_macedonian.py +++ /dev/null @@ -1,95 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models -import wagtail.snippets.blocks -import wagtail.images.blocks -import wagtail.fields -import wagtail.blocks -import wagtail.embeds.blocks -import home.models - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0021_add_georgian'), - ] - - operations = [ - migrations.AddField( - model_name='homepage', - name='body_mk', - field=wagtail.fields.StreamField((('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup')), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title'))))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),))), ('column_block', wagtail.blocks.StructBlock((('title_col1', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)))))), blank=True, null=True), - ), - migrations.AddField( - model_name='homepage', - name='intro_mk', - field=models.CharField(blank=True, verbose_name='Subtitle', default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.', max_length=255), - ), - migrations.AddField( - model_name='homepage', - name='title_mk', - field=models.CharField(blank=True, verbose_name='Header Title', max_length=255), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='body_mk', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down'))), blank=True, verbose_name='body', null=True), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='title_mk', - field=models.CharField(blank=True, verbose_name='Title', max_length=150), - ), - migrations.AddField( - model_name='manualsindex', - name='body_mk', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup')), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup'))), icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),)))), blank=True, verbose_name='body', null=True), - ), - migrations.AddField( - model_name='manualsindex', - name='title_mk', - field=models.CharField(blank=True, verbose_name='Title', max_length=150), - ), - migrations.AddField( - model_name='manualssectionpage', - name='description_mk', - field=models.CharField(blank=True, verbose_name='Description', max_length=260), - ), - migrations.AddField( - model_name='manualssectionpage', - name='title_mk', - field=models.CharField(blank=True, verbose_name='Title', max_length=150), - ), - migrations.AddField( - model_name='menuitem', - name='menu_title_mk', - field=models.CharField(blank=True, max_length=255), - ), - migrations.AddField( - model_name='pagecollection', - name='title_mk', - field=models.CharField(blank=True, max_length=80), - ), - migrations.AddField( - model_name='rssimport', - name='rss_title_mk', - field=models.CharField(blank=True, max_length=255), - ), - migrations.AddField( - model_name='simplepage', - name='body_mk', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup')), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(required=False, choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup'))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(target_model=home.models.snippets.RSSImport, required=True)),)))), blank=True, verbose_name='body', null=True), - ), - migrations.AddField( - model_name='simplepage', - name='intro_mk', - field=models.CharField(blank=True, verbose_name='Subtitle', max_length=255), - ), - migrations.AddField( - model_name='simplepage', - name='title_mk', - field=models.CharField(blank=True, verbose_name='Title', max_length=255), - ), - ] diff --git a/home/migrations/0023_merge.py b/home/migrations/0023_merge.py deleted file mode 100644 index e8653327c..000000000 --- a/home/migrations/0023_merge.py +++ /dev/null @@ -1,15 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0021_add_view_link_field'), - ('home', '0022_add_macedonian'), - ] - - operations = [ - ] diff --git a/home/migrations/0024_add_maltese.py b/home/migrations/0024_add_maltese.py deleted file mode 100644 index fdbee7199..000000000 --- a/home/migrations/0024_add_maltese.py +++ /dev/null @@ -1,95 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models -import home.models -import wagtail.blocks -import wagtail.snippets.blocks -import wagtail.images.blocks -import wagtail.fields -import wagtail.embeds.blocks - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0023_merge'), - ] - - operations = [ - migrations.AddField( - model_name='homepage', - name='body_mt', - field=wagtail.fields.StreamField((('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(icon='cup', required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?')), ('alignment', wagtail.blocks.ChoiceBlock(icon='cup', choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?'))))), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('news_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('news', wagtail.blocks.CharBlock(classname='full title'))))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport)),))), ('column_block', wagtail.blocks.StructBlock((('title_col1', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)))))), blank=True, null=True), - ), - migrations.AddField( - model_name='homepage', - name='intro_mt', - field=models.CharField(default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.', blank=True, max_length=255, verbose_name='Subtitle'), - ), - migrations.AddField( - model_name='homepage', - name='title_mt', - field=models.CharField(blank=True, max_length=255, verbose_name='Header Title'), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='body_mt', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down'))), blank=True, verbose_name='body', null=True), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='title_mt', - field=models.CharField(blank=True, max_length=150, verbose_name='Title'), - ), - migrations.AddField( - model_name='manualsindex', - name='body_mt', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(icon='cup', required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?')), ('alignment', wagtail.blocks.ChoiceBlock(icon='cup', choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(icon='cup', required=False, choices=[('4', 'three columns'), ('6', 'two columns')], help_text=''))), icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),)))), blank=True, verbose_name='body', null=True), - ), - migrations.AddField( - model_name='manualsindex', - name='title_mt', - field=models.CharField(blank=True, max_length=150, verbose_name='Title'), - ), - migrations.AddField( - model_name='manualssectionpage', - name='description_mt', - field=models.CharField(blank=True, max_length=260, verbose_name='Description'), - ), - migrations.AddField( - model_name='manualssectionpage', - name='title_mt', - field=models.CharField(blank=True, max_length=150, verbose_name='Title'), - ), - migrations.AddField( - model_name='menuitem', - name='menu_title_mt', - field=models.CharField(blank=True, max_length=255), - ), - migrations.AddField( - model_name='pagecollection', - name='title_mt', - field=models.CharField(blank=True, max_length=80), - ), - migrations.AddField( - model_name='rssimport', - name='rss_title_mt', - field=models.CharField(blank=True, max_length=255), - ), - migrations.AddField( - model_name='simplepage', - name='body_mt', - field=wagtail.fields.StreamField((('heading', wagtail.blocks.CharBlock(icon='title', classname='full title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(required=False, classname='full title')), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock((('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))), required=False)), ('highlight', wagtail.blocks.ChoiceBlock(icon='cup', required=False, choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?')), ('alignment', wagtail.blocks.ChoiceBlock(icon='cup', choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?'))))), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()),), icon='image')), ('images', wagtail.blocks.StructBlock((('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False)))))), ('columns', wagtail.blocks.ChoiceBlock(icon='cup', required=False, choices=[('4', 'three columns'), ('6', 'two columns')], help_text=''))), icon='image')), ('contact_block', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(classname='full title')), ('name_label', wagtail.blocks.CharBlock(classname='full title')), ('email_label', wagtail.blocks.CharBlock(classname='full title')), ('subject_label', wagtail.blocks.CharBlock(classname='full title')), ('message_label', wagtail.blocks.CharBlock(classname='full title')), ('submit_label', wagtail.blocks.CharBlock(classname='full title'))), icon='form')), ('accordion_block', wagtail.blocks.StructBlock((('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False)))))),), icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock((('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock()))))),))), ('rss_feed', wagtail.blocks.StructBlock((('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport)),)))), blank=True, verbose_name='body', null=True), - ), - migrations.AddField( - model_name='simplepage', - name='intro_mt', - field=models.CharField(blank=True, max_length=255, verbose_name='Subtitle'), - ), - migrations.AddField( - model_name='simplepage', - name='title_mt', - field=models.CharField(blank=True, max_length=255, verbose_name='Title'), - ), - ] diff --git a/home/migrations/0025_make_linkview_nullable.py b/home/migrations/0025_make_linkview_nullable.py deleted file mode 100644 index 7d31394c7..000000000 --- a/home/migrations/0025_make_linkview_nullable.py +++ /dev/null @@ -1,20 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0024_add_maltese'), - ] - - operations = [ - migrations.AlterField( - model_name='menuitem', - name='link_view', - field=models.CharField(max_length=100, blank=True, default='', choices=[('organisation-list', 'List of Organisations')]), - preserve_default=False, - ), - ] diff --git a/home/migrations/0026_add_subtitle_to_manuals_detail.py b/home/migrations/0026_add_subtitle_to_manuals_detail.py deleted file mode 100644 index c72558e33..000000000 --- a/home/migrations/0026_add_subtitle_to_manuals_detail.py +++ /dev/null @@ -1,79 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0025_make_linkview_nullable'), - ] - - operations = [ - migrations.AddField( - model_name='manualsdetailpage', - name='description_da', - field=models.CharField(verbose_name='Subtitle', blank=True, max_length=260), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='description_de', - field=models.CharField(verbose_name='Subtitle', blank=True, max_length=260), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='description_el', - field=models.CharField(verbose_name='Subtitle', blank=True, max_length=260), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='description_en', - field=models.CharField(verbose_name='Subtitle', blank=True, max_length=260), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='description_fr', - field=models.CharField(verbose_name='Subtitle', blank=True, max_length=260), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='description_it', - field=models.CharField(verbose_name='Subtitle', blank=True, max_length=260), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='description_ka', - field=models.CharField(verbose_name='Subtitle', blank=True, max_length=260), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='description_mk', - field=models.CharField(verbose_name='Subtitle', blank=True, max_length=260), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='description_mt', - field=models.CharField(verbose_name='Subtitle', blank=True, max_length=260), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='description_ru', - field=models.CharField(verbose_name='Subtitle', blank=True, max_length=260), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='description_sl', - field=models.CharField(verbose_name='Subtitle', blank=True, max_length=260), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='description_sv', - field=models.CharField(verbose_name='Subtitle', blank=True, max_length=260), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='description_uk', - field=models.CharField(verbose_name='Subtitle', blank=True, max_length=260), - ), - ] diff --git a/home/migrations/0027_helppages.py b/home/migrations/0027_helppages.py deleted file mode 100644 index 4af583991..000000000 --- a/home/migrations/0027_helppages.py +++ /dev/null @@ -1,27 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models -import django.db.models.deletion - - -class Migration(migrations.Migration): - - dependencies = [ - ('wagtailcore', '0033_remove_golive_expiry_help_text'), - ('home', '0026_add_subtitle_to_manuals_detail'), - ] - - operations = [ - migrations.CreateModel( - name='HelpPages', - fields=[ - ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)), - ('guidelines_page', models.ForeignKey(null=True, help_text='Please add a link to the guideline page.', on_delete=django.db.models.deletion.SET_NULL, to='wagtailcore.Page')), - ('site', models.OneToOneField(editable=False, to='wagtailcore.Site', on_delete=models.CASCADE)), - ], - options={ - 'abstract': False, - }, - ), - ] diff --git a/home/migrations/0028_helppages_example_project.py b/home/migrations/0028_helppages_example_project.py deleted file mode 100644 index ecae3be82..000000000 --- a/home/migrations/0028_helppages_example_project.py +++ /dev/null @@ -1,19 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0027_helppages'), - ] - - operations = [ - migrations.AddField( - model_name='helppages', - name='example_project', - field=models.URLField(null=True, help_text='Please enter project url.'), - ), - ] diff --git a/home/migrations/0029_add_fields_for_example_projects.py b/home/migrations/0029_add_fields_for_example_projects.py deleted file mode 100644 index 210583c63..000000000 --- a/home/migrations/0029_add_fields_for_example_projects.py +++ /dev/null @@ -1,55 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models -import django.db.models.deletion - - -class Migration(migrations.Migration): - - dependencies = [ - ('a4projects', '0006_project_typ'), - ('home', '0028_helppages_example_project'), - ] - - operations = [ - migrations.RemoveField( - model_name='helppages', - name='example_project', - ), - migrations.AddField( - model_name='helppages', - name='agenda_setting', - field=models.ForeignKey(related_name='example_project_agenda_setting', on_delete=django.db.models.deletion.SET_NULL, blank=True, to='a4projects.Project', null=True, help_text='Please select an exemplary agenda-setting project.'), - ), - migrations.AddField( - model_name='helppages', - name='brainstorming', - field=models.ForeignKey(related_name='example_project_brainstorming', on_delete=django.db.models.deletion.SET_NULL, blank=True, to='a4projects.Project', null=True, help_text='Please select an exemplary brainstorming project.'), - ), - migrations.AddField( - model_name='helppages', - name='commenting_text', - field=models.ForeignKey(related_name='example_project_commenting_text', on_delete=django.db.models.deletion.SET_NULL, blank=True, to='a4projects.Project', null=True, help_text='Please select an exemplary commenting-text project.'), - ), - migrations.AddField( - model_name='helppages', - name='flashpoll', - field=models.ForeignKey(related_name='example_project_flashpoll', on_delete=django.db.models.deletion.SET_NULL, blank=True, to='a4projects.Project', null=True, help_text='Please select an exemplary flashpoll project.'), - ), - migrations.AddField( - model_name='helppages', - name='idea_challenge', - field=models.ForeignKey(related_name='example_project_idea_challenge', on_delete=django.db.models.deletion.SET_NULL, blank=True, to='a4projects.Project', null=True, help_text='Please select an exemplary idea-challenge project.'), - ), - migrations.AddField( - model_name='helppages', - name='map_brainstorming', - field=models.ForeignKey(related_name='example_project_map_brainstorming', on_delete=django.db.models.deletion.SET_NULL, blank=True, to='a4projects.Project', null=True, help_text='Please select an exemplary map-brainstorming project.'), - ), - migrations.AddField( - model_name='helppages', - name='map_idea_challenge', - field=models.ForeignKey(related_name='example_project_map_idea_challenge', on_delete=django.db.models.deletion.SET_NULL, blank=True, to='a4projects.Project', null=True, help_text='Please select an exemplary map-idea-challenge project.'), - ), - ] diff --git a/home/migrations/0030_drop_russian_ukrainian_and_maltese.py b/home/migrations/0030_drop_russian_ukrainian_and_maltese.py deleted file mode 100644 index 202047be9..000000000 --- a/home/migrations/0030_drop_russian_ukrainian_and_maltese.py +++ /dev/null @@ -1,206 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0029_add_fields_for_example_projects'), - ] - - operations = [ - migrations.RemoveField( - model_name='homepage', - name='body_mt', - ), - migrations.RemoveField( - model_name='homepage', - name='body_ru', - ), - migrations.RemoveField( - model_name='homepage', - name='body_uk', - ), - migrations.RemoveField( - model_name='homepage', - name='intro_mt', - ), - migrations.RemoveField( - model_name='homepage', - name='intro_ru', - ), - migrations.RemoveField( - model_name='homepage', - name='intro_uk', - ), - migrations.RemoveField( - model_name='homepage', - name='title_mt', - ), - migrations.RemoveField( - model_name='homepage', - name='title_ru', - ), - migrations.RemoveField( - model_name='homepage', - name='title_uk', - ), - migrations.RemoveField( - model_name='manualsdetailpage', - name='body_mt', - ), - migrations.RemoveField( - model_name='manualsdetailpage', - name='body_ru', - ), - migrations.RemoveField( - model_name='manualsdetailpage', - name='body_uk', - ), - migrations.RemoveField( - model_name='manualsdetailpage', - name='description_mt', - ), - migrations.RemoveField( - model_name='manualsdetailpage', - name='description_ru', - ), - migrations.RemoveField( - model_name='manualsdetailpage', - name='description_uk', - ), - migrations.RemoveField( - model_name='manualsdetailpage', - name='title_mt', - ), - migrations.RemoveField( - model_name='manualsdetailpage', - name='title_ru', - ), - migrations.RemoveField( - model_name='manualsdetailpage', - name='title_uk', - ), - migrations.RemoveField( - model_name='manualsindex', - name='body_mt', - ), - migrations.RemoveField( - model_name='manualsindex', - name='body_ru', - ), - migrations.RemoveField( - model_name='manualsindex', - name='body_uk', - ), - migrations.RemoveField( - model_name='manualsindex', - name='title_mt', - ), - migrations.RemoveField( - model_name='manualsindex', - name='title_ru', - ), - migrations.RemoveField( - model_name='manualsindex', - name='title_uk', - ), - migrations.RemoveField( - model_name='manualssectionpage', - name='description_mt', - ), - migrations.RemoveField( - model_name='manualssectionpage', - name='description_ru', - ), - migrations.RemoveField( - model_name='manualssectionpage', - name='description_uk', - ), - migrations.RemoveField( - model_name='manualssectionpage', - name='title_mt', - ), - migrations.RemoveField( - model_name='manualssectionpage', - name='title_ru', - ), - migrations.RemoveField( - model_name='manualssectionpage', - name='title_uk', - ), - migrations.RemoveField( - model_name='menuitem', - name='menu_title_mt', - ), - migrations.RemoveField( - model_name='menuitem', - name='menu_title_ru', - ), - migrations.RemoveField( - model_name='menuitem', - name='menu_title_uk', - ), - migrations.RemoveField( - model_name='pagecollection', - name='title_mt', - ), - migrations.RemoveField( - model_name='pagecollection', - name='title_ru', - ), - migrations.RemoveField( - model_name='pagecollection', - name='title_uk', - ), - migrations.RemoveField( - model_name='rssimport', - name='rss_title_mt', - ), - migrations.RemoveField( - model_name='rssimport', - name='rss_title_ru', - ), - migrations.RemoveField( - model_name='rssimport', - name='rss_title_uk', - ), - migrations.RemoveField( - model_name='simplepage', - name='body_mt', - ), - migrations.RemoveField( - model_name='simplepage', - name='body_ru', - ), - migrations.RemoveField( - model_name='simplepage', - name='body_uk', - ), - migrations.RemoveField( - model_name='simplepage', - name='intro_mt', - ), - migrations.RemoveField( - model_name='simplepage', - name='intro_ru', - ), - migrations.RemoveField( - model_name='simplepage', - name='intro_uk', - ), - migrations.RemoveField( - model_name='simplepage', - name='title_mt', - ), - migrations.RemoveField( - model_name='simplepage', - name='title_ru', - ), - migrations.RemoveField( - model_name='simplepage', - name='title_uk', - ), - ] diff --git a/home/migrations/0031_allow_15_pages_in_pagecollection.py b/home/migrations/0031_allow_15_pages_in_pagecollection.py deleted file mode 100644 index a8358f999..000000000 --- a/home/migrations/0031_allow_15_pages_in_pagecollection.py +++ /dev/null @@ -1,51 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models -import django.db.models.deletion - - -class Migration(migrations.Migration): - - dependencies = [ - ('wagtailcore', '0040_page_draft_title'), - ('home', '0030_drop_russian_ukrainian_and_maltese'), - ] - - operations = [ - migrations.AddField( - model_name='pagecollection', - name='page_10', - field=models.ForeignKey(null=True, blank=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.Page'), - ), - migrations.AddField( - model_name='pagecollection', - name='page_11', - field=models.ForeignKey(null=True, blank=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.Page'), - ), - migrations.AddField( - model_name='pagecollection', - name='page_12', - field=models.ForeignKey(null=True, blank=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.Page'), - ), - migrations.AddField( - model_name='pagecollection', - name='page_13', - field=models.ForeignKey(null=True, blank=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.Page'), - ), - migrations.AddField( - model_name='pagecollection', - name='page_14', - field=models.ForeignKey(null=True, blank=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.Page'), - ), - migrations.AddField( - model_name='pagecollection', - name='page_15', - field=models.ForeignKey(null=True, blank=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.Page'), - ), - migrations.AddField( - model_name='pagecollection', - name='page_9', - field=models.ForeignKey(null=True, blank=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.Page'), - ), - ] diff --git a/home/migrations/0032_add_two_more_pages_to_page_collection.py b/home/migrations/0032_add_two_more_pages_to_page_collection.py deleted file mode 100644 index 8685b6948..000000000 --- a/home/migrations/0032_add_two_more_pages_to_page_collection.py +++ /dev/null @@ -1,26 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations, models -import django.db.models.deletion - - -class Migration(migrations.Migration): - - dependencies = [ - ('wagtailcore', '0040_page_draft_title'), - ('home', '0031_allow_15_pages_in_pagecollection'), - ] - - operations = [ - migrations.AddField( - model_name='pagecollection', - name='page_16', - field=models.ForeignKey(blank=True, to='wagtailcore.Page', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+'), - ), - migrations.AddField( - model_name='pagecollection', - name='page_17', - field=models.ForeignKey(blank=True, to='wagtailcore.Page', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+'), - ) - ] diff --git a/home/migrations/0033_translate_intro.py b/home/migrations/0033_translate_intro.py deleted file mode 100644 index 9d8986a97..000000000 --- a/home/migrations/0033_translate_intro.py +++ /dev/null @@ -1,66 +0,0 @@ -# -*- coding: utf-8 -*- -# Generated by Django 1.11.9 on 2018-03-13 15:17 -from __future__ import unicode_literals - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0032_add_two_more_pages_to_page_collection'), - ] - - operations = [ - migrations.RenameField( - model_name='pagecollection', - old_name='intro_text', - new_name='intro_text_de', - ), - migrations.AddField( - model_name='pagecollection', - name='intro_text_da', - field=models.CharField(blank=True, max_length=250), - ), - migrations.AddField( - model_name='pagecollection', - name='intro_text_el', - field=models.CharField(blank=True, max_length=250), - ), - migrations.AddField( - model_name='pagecollection', - name='intro_text_en', - field=models.CharField(default='', max_length=250), - preserve_default=False, - ), - migrations.AddField( - model_name='pagecollection', - name='intro_text_fr', - field=models.CharField(blank=True, max_length=250), - ), - migrations.AddField( - model_name='pagecollection', - name='intro_text_it', - field=models.CharField(blank=True, max_length=250), - ), - migrations.AddField( - model_name='pagecollection', - name='intro_text_ka', - field=models.CharField(blank=True, max_length=250), - ), - migrations.AddField( - model_name='pagecollection', - name='intro_text_mk', - field=models.CharField(blank=True, max_length=250), - ), - migrations.AddField( - model_name='pagecollection', - name='intro_text_sl', - field=models.CharField(blank=True, max_length=250), - ), - migrations.AddField( - model_name='pagecollection', - name='intro_text_sv', - field=models.CharField(blank=True, max_length=250), - ), - ] diff --git a/home/migrations/0034_remove_flashpoll_blueprints.py b/home/migrations/0034_remove_flashpoll_blueprints.py deleted file mode 100644 index fdcedc04b..000000000 --- a/home/migrations/0034_remove_flashpoll_blueprints.py +++ /dev/null @@ -1,26 +0,0 @@ -# -*- coding: utf-8 -*- -# Generated by Django 1.11.13 on 2018-06-13 09:51 -from __future__ import unicode_literals - -from django.db import migrations, models -import django.db.models.deletion - - -class Migration(migrations.Migration): - - dependencies = [ - ('a4projects', '0014_collapsible_information_field'), - ('home', '0033_translate_intro'), - ] - - operations = [ - migrations.RemoveField( - model_name='helppages', - name='flashpoll', - ), - migrations.AddField( - model_name='helppages', - name='a4_poll', - field=models.ForeignKey(blank=True, help_text='Please select an exemplary a4-poll project.', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='example_project_a4_poll', to='a4projects.Project'), - ), - ] diff --git a/home/migrations/0035_manualssectionpage_document.py b/home/migrations/0035_manualssectionpage_document.py deleted file mode 100644 index c7c301de6..000000000 --- a/home/migrations/0035_manualssectionpage_document.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- coding: utf-8 -*- -# Generated by Django 1.11.20 on 2019-03-07 12:25 -from __future__ import unicode_literals - -from django.db import migrations, models -import django.db.models.deletion - - -class Migration(migrations.Migration): - - dependencies = [ - ('wagtaildocs', '0008_document_file_size'), - ('home', '0034_remove_flashpoll_blueprints'), - ] - - operations = [ - migrations.AddField( - model_name='manualssectionpage', - name='document', - field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtaildocs.Document'), - ), - ] diff --git a/home/migrations/0036_helppages_communitydebate.py b/home/migrations/0036_helppages_communitydebate.py deleted file mode 100644 index ce0ac43c1..000000000 --- a/home/migrations/0036_helppages_communitydebate.py +++ /dev/null @@ -1,20 +0,0 @@ -# Generated by Django 2.2.12 on 2020-04-23 14:45 - -from django.db import migrations, models -import django.db.models.deletion - - -class Migration(migrations.Migration): - - dependencies = [ - ('a4projects', '0026_project_project_type'), - ('home', '0035_manualssectionpage_document'), - ] - - operations = [ - migrations.AddField( - model_name='helppages', - name='communitydebate', - field=models.ForeignKey(blank=True, help_text='Please select an exemplary communitydebate project.', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='example_project_communitydebate', to='a4projects.Project'), - ), - ] diff --git a/home/migrations/0037_remove_homepage_videoplayer_url.py b/home/migrations/0037_remove_homepage_videoplayer_url.py deleted file mode 100644 index 3b8172e54..000000000 --- a/home/migrations/0037_remove_homepage_videoplayer_url.py +++ /dev/null @@ -1,17 +0,0 @@ -# Generated by Django 2.2.24 on 2021-07-15 12:19 - -from django.db import migrations - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0036_helppages_communitydebate'), - ] - - operations = [ - migrations.RemoveField( - model_name='homepage', - name='videoplayer_url', - ), - ] diff --git a/home/migrations/0038_add_multi_col_block_bg_col_block_tile_block.py b/home/migrations/0038_add_multi_col_block_bg_col_block_tile_block.py deleted file mode 100644 index ddd0918f9..000000000 --- a/home/migrations/0038_add_multi_col_block_bg_col_block_tile_block.py +++ /dev/null @@ -1,219 +0,0 @@ -# Generated by Django 2.2.24 on 2021-07-20 15:39 - -from django.db import migrations -import home.models.snippets -import wagtail.blocks -import wagtail.fields -import wagtail.embeds.blocks -import wagtail.images.blocks -import wagtail.snippets.blocks - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0037_remove_homepage_videoplayer_url'), - ] - - operations = [ - migrations.AlterField( - model_name='homepage', - name='body_da', - field=wagtail.fields.StreamField([('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_de', - field=wagtail.fields.StreamField([('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_el', - field=wagtail.fields.StreamField([('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_en', - field=wagtail.fields.StreamField([('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_fr', - field=wagtail.fields.StreamField([('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_it', - field=wagtail.fields.StreamField([('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_ka', - field=wagtail.fields.StreamField([('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_mk', - field=wagtail.fields.StreamField([('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_sl', - field=wagtail.fields.StreamField([('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_sv', - field=wagtail.fields.StreamField([('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_da', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_de', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_el', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_en', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_fr', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_it', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_ka', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_mk', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_sl', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_sv', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_da', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_de', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_el', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_en', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_fr', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_it', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_ka', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_mk', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_sl', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_sv', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_da', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_de', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_el', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_en', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_fr', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_it', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_ka', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_mk', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_sl', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_sv', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - ] diff --git a/home/migrations/0039_add_headline_col_and_tile_blocks.py b/home/migrations/0039_add_headline_col_and_tile_blocks.py deleted file mode 100644 index 42a52730e..000000000 --- a/home/migrations/0039_add_headline_col_and_tile_blocks.py +++ /dev/null @@ -1,219 +0,0 @@ -# Generated by Django 2.2.24 on 2021-07-27 14:26 - -from django.db import migrations -import home.models.snippets -import wagtail.blocks -import wagtail.fields -import wagtail.embeds.blocks -import wagtail.images.blocks -import wagtail.snippets.blocks - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0038_add_multi_col_block_bg_col_block_tile_block'), - ] - - operations = [ - migrations.AlterField( - model_name='homepage', - name='body_da', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_de', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_el', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_en', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_fr', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_it', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_ka', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_mk', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_sl', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_sv', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_da', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_de', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_el', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_en', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_fr', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_it', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_ka', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_mk', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_sl', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_sv', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_da', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_de', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_el', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_en', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_fr', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_it', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_ka', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_mk', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_sl', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_sv', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_da', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_de', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_el', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_en', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_fr', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_it', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_ka', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_mk', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_sl', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_sv', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - ] diff --git a/home/migrations/0040_rm_required_video_headline.py b/home/migrations/0040_rm_required_video_headline.py deleted file mode 100644 index cfb1b48ee..000000000 --- a/home/migrations/0040_rm_required_video_headline.py +++ /dev/null @@ -1,119 +0,0 @@ -# Generated by Django 2.2.24 on 2021-09-23 09:51 - -from django.db import migrations -import home.models.snippets -import wagtail.blocks -import wagtail.fields -import wagtail.embeds.blocks -import wagtail.images.blocks -import wagtail.snippets.blocks - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0039_add_headline_col_and_tile_blocks'), - ] - - operations = [ - migrations.AlterField( - model_name='homepage', - name='body_da', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_de', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_el', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_en', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_fr', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_it', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_ka', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_mk', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_sl', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_sv', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_da', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_de', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_el', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_en', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_fr', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_it', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_ka', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_mk', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_sl', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_sv', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - ] diff --git a/home/migrations/0041_add_bulgarian.py b/home/migrations/0041_add_bulgarian.py deleted file mode 100644 index 3c5106a35..000000000 --- a/home/migrations/0041_add_bulgarian.py +++ /dev/null @@ -1,104 +0,0 @@ -# Generated by Django 3.2.12 on 2022-03-03 10:36 - -from django.db import migrations, models -import home.models.snippets -import wagtail.blocks -import wagtail.fields -import wagtail.embeds.blocks -import wagtail.images.blocks -import wagtail.snippets.blocks - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0040_rm_required_video_headline'), - ] - - operations = [ - migrations.AddField( - model_name='homepage', - name='body_bg', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True), - ), - migrations.AddField( - model_name='homepage', - name='intro_bg', - field=models.CharField(blank=True, default='Ever wondered how to get young people involved in politics online?OPIN, a European toolbox for youth eParticipation projects, shows you how.', max_length=255, verbose_name='Subtitle'), - ), - migrations.AddField( - model_name='homepage', - name='title_bg', - field=models.CharField(blank=True, max_length=255, verbose_name='Header Title'), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='body_bg', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='description_bg', - field=models.CharField(blank=True, max_length=260, verbose_name='Subtitle'), - ), - migrations.AddField( - model_name='manualsdetailpage', - name='title_bg', - field=models.CharField(blank=True, max_length=150, verbose_name='Title'), - ), - migrations.AddField( - model_name='manualsindex', - name='body_bg', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AddField( - model_name='manualsindex', - name='title_bg', - field=models.CharField(blank=True, max_length=150, verbose_name='Title'), - ), - migrations.AddField( - model_name='manualssectionpage', - name='description_bg', - field=models.CharField(blank=True, max_length=260, verbose_name='Description'), - ), - migrations.AddField( - model_name='manualssectionpage', - name='title_bg', - field=models.CharField(blank=True, max_length=150, verbose_name='Title'), - ), - migrations.AddField( - model_name='menuitem', - name='menu_title_bg', - field=models.CharField(blank=True, max_length=255), - ), - migrations.AddField( - model_name='pagecollection', - name='intro_text_bg', - field=models.CharField(blank=True, max_length=250), - ), - migrations.AddField( - model_name='pagecollection', - name='title_bg', - field=models.CharField(blank=True, max_length=80), - ), - migrations.AddField( - model_name='rssimport', - name='rss_title_bg', - field=models.CharField(blank=True, max_length=255), - ), - migrations.AddField( - model_name='simplepage', - name='body_bg', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, verbose_name='body'), - ), - migrations.AddField( - model_name='simplepage', - name='intro_bg', - field=models.CharField(blank=True, max_length=255, verbose_name='Subtitle'), - ), - migrations.AddField( - model_name='simplepage', - name='title_bg', - field=models.CharField(blank=True, max_length=255, verbose_name='Title'), - ), - ] diff --git a/home/migrations/0042_add_use_json_field.py b/home/migrations/0042_add_use_json_field.py deleted file mode 100644 index fad43e5fc..000000000 --- a/home/migrations/0042_add_use_json_field.py +++ /dev/null @@ -1,244 +0,0 @@ -# Generated by Django 3.2.18 on 2023-02-21 15:17 - -from django.db import migrations -import home.models.snippets -import wagtail.blocks -import wagtail.embeds.blocks -import wagtail.fields -import wagtail.images.blocks -import wagtail.snippets.blocks - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0041_add_bulgarian'), - ] - - operations = [ - migrations.AlterField( - model_name='homepage', - name='body_bg', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_da', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_de', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_el', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_en', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], null=True, use_json_field=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_fr', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_it', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_ka', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_mk', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_sl', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True), - ), - migrations.AlterField( - model_name='homepage', - name='body_sv', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('news_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('news', wagtail.blocks.CharBlock(form_classname='full title'))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('column_block', wagtail.blocks.StructBlock([('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_bg', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_da', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_de', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_el', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_en', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_fr', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_it', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_ka', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_mk', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_sl', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsdetailpage', - name='body_sv', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('video_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('video', wagtail.embeds.blocks.EmbedBlock())])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_bg', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_da', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_de', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_el', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_en', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_fr', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_it', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_ka', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_mk', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_sl', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualsindex', - name='body_sv', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='manualssectionpage', - name='body', - field=wagtail.fields.StreamField([('snippet', wagtail.snippets.blocks.SnippetChooserBlock(required=False, target_model=home.models.snippets.PageCollection, template='home/blocks/page_collection_block.html'))], use_json_field=True), - ), - migrations.AlterField( - model_name='simplepage', - name='body_bg', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_da', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_de', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_el', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_en', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_fr', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_it', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_ka', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_mk', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_sl', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - migrations.AlterField( - model_name='simplepage', - name='body_sv', - field=wagtail.fields.StreamField([('heading', wagtail.blocks.CharBlock(form_classname='full title', icon='title')), ('paragraph', wagtail.blocks.TextBlock(icon='pilcrow')), ('rich_text', wagtail.blocks.RichTextBlock(icon='pilcrow')), ('info_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('', 'None'), ('highlight', 'Highlight (blue)'), ('boxed', 'Boxed'), ('boxed2', 'Boxed Variation'), ('highlight-purple', 'Highlight (purple)')], help_text='How should this block be displayed?', icon='cup', required=False)), ('alignment', wagtail.blocks.ChoiceBlock(choices=[('vertical', 'vertical'), ('horizontal', 'horizontal')], help_text='How should the text and image be aligned?', icon='cup'))])), ('image', wagtail.images.blocks.ImageChooserBlock(icon='image')), ('wide_image', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock())], icon='image')), ('images', wagtail.blocks.StructBlock([('inline_images', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))]))), ('columns', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns')], help_text='', icon='cup', required=False))], icon='image')), ('contact_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title')), ('name_label', wagtail.blocks.CharBlock(form_classname='full title')), ('email_label', wagtail.blocks.CharBlock(form_classname='full title')), ('subject_label', wagtail.blocks.CharBlock(form_classname='full title')), ('message_label', wagtail.blocks.CharBlock(form_classname='full title')), ('submit_label', wagtail.blocks.CharBlock(form_classname='full title'))], icon='form')), ('accordion_block', wagtail.blocks.StructBlock([('accordion_items', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.TextBlock(required=False)), ('content', wagtail.blocks.RichTextBlock(required=False))])))], icon='collapse-down')), ('image_text_block_list', wagtail.blocks.StructBlock([('imageTextBlockList', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock()), ('text', wagtail.blocks.TextBlock())])))])), ('rss_feed', wagtail.blocks.StructBlock([('feed', wagtail.snippets.blocks.SnippetChooserBlock(required=True, target_model=home.models.snippets.RSSImport))])), ('highlighted_column_block', wagtail.blocks.StructBlock([('column_count', wagtail.blocks.ChoiceBlock(choices=[('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False)), ('highlight', wagtail.blocks.ChoiceBlock(choices=[('highlight', 'Highlight (blue)'), ('highlight-purple', 'Highlight (purple)'), ('highlight-green', 'Highlight (green)')], help_text='Choose background colour of block', icon='cup', required=False))])))])), ('column_cta_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('column_count', wagtail.blocks.ChoiceBlock(choices=[('4', 'three columns'), ('6', 'two columns'), ('12', 'one column')], help_text='Only add this number of columns', icon='cup', required=False)), ('column', wagtail.blocks.ListBlock(wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text', wagtail.blocks.RichTextBlock(required=False)), ('button', wagtail.blocks.StructBlock([('internal_link', wagtail.blocks.PageChooserBlock(required=False)), ('external_link', wagtail.blocks.URLBlock(required=False)), ('link_text', wagtail.blocks.TextBlock(required=False))], required=False))])))])), ('tile_column_block', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('sub_title', wagtail.blocks.CharBlock(form_classname='subtitle title', required=False)), ('title_col1', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col1', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col1', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col1', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col1', wagtail.blocks.URLBlock(required=False)), ('title_col2', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col2', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col2', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col2', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col2', wagtail.blocks.URLBlock(required=False)), ('title_col3', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col3', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col3', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col3', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col3', wagtail.blocks.URLBlock(required=False)), ('title_col4', wagtail.blocks.CharBlock(form_classname='full title', required=False)), ('image_col4', wagtail.images.blocks.ImageChooserBlock(required=False)), ('text_col4', wagtail.blocks.RichTextBlock(required=False)), ('internal_link_col4', wagtail.blocks.PageChooserBlock(required=False)), ('external_link_col4', wagtail.blocks.URLBlock(required=False))]))], blank=True, null=True, use_json_field=True, verbose_name='body'), - ), - ] diff --git a/home/migrations/0043_remove_helppages_communitydebate.py b/home/migrations/0043_remove_helppages_communitydebate.py deleted file mode 100644 index 4b87ea14c..000000000 --- a/home/migrations/0043_remove_helppages_communitydebate.py +++ /dev/null @@ -1,17 +0,0 @@ -# Generated by Django 3.2.20 on 2024-09-09 14:09 - -from django.db import migrations - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0042_add_use_json_field'), - ] - - operations = [ - migrations.RemoveField( - model_name='helppages', - name='communitydebate', - ), - ] diff --git a/home/migrations/0044_delete_helppages.py b/home/migrations/0044_delete_helppages.py deleted file mode 100644 index b9e36faf4..000000000 --- a/home/migrations/0044_delete_helppages.py +++ /dev/null @@ -1,16 +0,0 @@ -# Generated by Django 3.2.20 on 2024-09-10 09:36 - -from django.db import migrations - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0043_remove_helppages_communitydebate'), - ] - - operations = [ - migrations.DeleteModel( - name='HelpPages', - ), - ] diff --git a/home/models/base_pages.py b/home/models/base_pages.py index 842753f12..1ad0c8979 100644 --- a/home/models/base_pages.py +++ b/home/models/base_pages.py @@ -5,7 +5,6 @@ from wagtail.images import blocks as image_blocks from wagtail.models import Page -from adhocracy4.projects import models as prj_models from contrib import translations from euth_wagtail.settings import LANGUAGES @@ -102,10 +101,6 @@ class Meta: 'home.ManualsIndex' ] - @property - def featured_projects(self): - return prj_models.Project.objects.featured() - class SimplePage(Page, metaclass=translations.TranslatedPageMetaclass):