diff --git a/network-api/networkapi/wagtailpages/migrations/0065_auto_20190403_0855.py b/network-api/networkapi/wagtailpages/migrations/0065_auto_20190403_0855.py new file mode 100644 index 00000000000..9874b44bee3 --- /dev/null +++ b/network-api/networkapi/wagtailpages/migrations/0065_auto_20190403_0855.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.20 on 2019-04-03 15:55 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('wagtailpages', '0064_auto_20190329_2313'), + ] + + operations = [ + migrations.AddField( + model_name='primarypage', + name='intro_de', + field=models.CharField(blank=True, help_text='Intro paragraph to show in hero cutout box', max_length=250, null=True), + ), + migrations.AddField( + model_name='primarypage', + name='intro_en', + field=models.CharField(blank=True, help_text='Intro paragraph to show in hero cutout box', max_length=250, null=True), + ), + migrations.AddField( + model_name='primarypage', + name='intro_es', + field=models.CharField(blank=True, help_text='Intro paragraph to show in hero cutout box', max_length=250, null=True), + ), + migrations.AddField( + model_name='primarypage', + name='intro_fr', + field=models.CharField(blank=True, help_text='Intro paragraph to show in hero cutout box', max_length=250, null=True), + ), + migrations.AddField( + model_name='primarypage', + name='intro_pl', + field=models.CharField(blank=True, help_text='Intro paragraph to show in hero cutout box', max_length=250, null=True), + ), + migrations.AddField( + model_name='primarypage', + name='intro_pt', + field=models.CharField(blank=True, help_text='Intro paragraph to show in hero cutout box', max_length=250, null=True), + ), + ] diff --git a/network-api/networkapi/wagtailpages/migrations/0066_merge_20190409_1433.py b/network-api/networkapi/wagtailpages/migrations/0066_merge_20190409_1433.py new file mode 100644 index 00000000000..5882c177c73 --- /dev/null +++ b/network-api/networkapi/wagtailpages/migrations/0066_merge_20190409_1433.py @@ -0,0 +1,16 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.20 on 2019-04-09 14:33 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('wagtailpages', '0065_auto_20190403_0855'), + ('wagtailpages', '0065_auto_20190402_2032'), + ] + + operations = [ + ] diff --git a/network-api/networkapi/wagtailpages/translation.py b/network-api/networkapi/wagtailpages/translation.py index 1f2cfece574..af7bf4df54b 100644 --- a/network-api/networkapi/wagtailpages/translation.py +++ b/network-api/networkapi/wagtailpages/translation.py @@ -89,6 +89,7 @@ class SignupTR(TranslationOptions): class PrimaryPageTR(TranslationOptions): fields = ( 'header', + 'intro', 'body', )