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.
32 lines
1.9 KiB
32 lines
1.9 KiB
# Generated by Django 2.0.2 on 2020-06-28 20:00
|
|
|
|
from django.db import migrations, models
|
|
import wagtail.blocks
|
|
import wagtail.fields
|
|
import wagtail.documents.blocks
|
|
import wagtail.images.blocks
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0004_eventpage_vimeo_id'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='eventpage',
|
|
name='registration_url',
|
|
field=models.URLField(blank=True, help_text='URL der Anmeldeseite (leer lassen um klassische Anmeldung zu verwenden)', max_length=512),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='eventhistorypage',
|
|
name='events',
|
|
field=wagtail.fields.StreamField((('event', wagtail.blocks.StructBlock((('title', wagtail.blocks.CharBlock(max_length=512, required=False)), ('subtitle', wagtail.blocks.CharBlock(max_length=512, required=False)), ('start_date', wagtail.blocks.DateBlock()), ('end_date', wagtail.blocks.DateBlock(help_text='Leave empty for single day events', required=False)), ('location_name', wagtail.blocks.CharBlock(help_text='Name of the location (first line of address)', max_length=256, required=False)), ('location_city', wagtail.blocks.CharBlock(help_text='Zip code and city', max_length=256, required=False)), ('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('flyer', wagtail.documents.blocks.DocumentChooserBlock(required=False)), ('additional_info_btn_label', wagtail.blocks.CharBlock(label='Zusatzinfo Button Text', max_length=128, required=False)), ('additional_info_target', wagtail.blocks.PageChooserBlock(label='Zusatzinfo Zielseite', required=False))))),)),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='eventpage',
|
|
name='show_in_event_calendar',
|
|
field=models.BooleanField(default=True, help_text='Event in Eventliste und im Kalender anzeigen?'),
|
|
),
|
|
]
|
|
|