You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
feo-homepage/core/migrations/0008_auto_20200719_1611.py

22 lines
1.5 KiB

# Generated by Django 3.0.8 on 2020-07-19 14:11
import core.models
from django.db import migrations
import wagtail.blocks
import wagtail.fields
import wagtail.images.blocks
class Migration(migrations.Migration):
dependencies = [
('core', '0007_auto_20200702_1923'),
]
operations = [
migrations.AlterField(
model_name='eventpage',
name='tabs',
field=wagtail.fields.StreamField([('sponsor_tab', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(max_length=64)), ('sponsors', wagtail.blocks.StreamBlock([('sponsor', wagtail.blocks.StructBlock([('name', wagtail.blocks.CharBlock(max_length=64)), ('logo', wagtail.images.blocks.ImageChooserBlock(required=False)), ('url', wagtail.blocks.URLBlock(required=False))])), ('headline', wagtail.blocks.CharBlock(max_length=64))]))])), ('richtext_tab', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(max_length=64)), ('content', wagtail.blocks.RichTextBlock())])), ('media_tab', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(max_length=64)), ('pre_content', wagtail.blocks.RichTextBlock(required=False)), ('media_file', core.models.MediaBlock(template='core/blocks/media_block.html')), ('autoplay', wagtail.blocks.BooleanBlock(label='Automatisch abspielen', required=False)), ('muted', wagtail.blocks.BooleanBlock(label='Stummgeschaltet starten', required=False)), ('post_content', wagtail.blocks.RichTextBlock(required=False))]))], blank=True, null=True),
),
]