123456789101112131415161718192021222324 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.10.5 on 2017-03-29 00:55
- from __future__ import unicode_literals
- from django.db import migrations
- import wagtail.core.blocks
- import wagtail.core.fields
- import wagtail.embeds.blocks
- import wagtail.images.blocks
- class Migration(migrations.Migration):
- dependencies = [
- ('blog', '0002_remove_blogindexpage_body'),
- ]
- operations = [
- migrations.AlterField(
- model_name='blogpage',
- name='body',
- field=wagtail.core.fields.StreamField((('heading_block', wagtail.core.blocks.StructBlock((('heading_text', wagtail.core.blocks.CharBlock(classname='title', required=True)), ('size', wagtail.core.blocks.ChoiceBlock(blank=True, choices=[('', 'Select a header size'), ('h2', 'H2'), ('h3', 'H3'), ('h4', 'H4')], required=False))))), ('paragraph_block', wagtail.core.blocks.RichTextBlock(icon='fa-paragraph', template='blocks/paragraph_block.html')), ('image_block', wagtail.core.blocks.StructBlock((('image', wagtail.images.blocks.ImageChooserBlock(required=True)), ('caption', wagtail.core.blocks.CharBlock(required=False)), ('attribution', wagtail.core.blocks.CharBlock(required=False))))), ('block_quote', wagtail.core.blocks.StructBlock((('text', wagtail.core.blocks.TextBlock()), ('attribute_name', wagtail.core.blocks.CharBlock(blank=True, label='e.g. Mary Berry', required=False))))), ('embed_block', wagtail.embeds.blocks.EmbedBlock(help_text='Insert an embed URL e.g https://www.youtube.com/embed/SGJFWirQ3ks', icon='fa-s15', template='blocks/embed_block.html'))), blank=True, verbose_name='Page body'),
- ),
- ]
|