Skip to content
Snippets Groups Projects
Commit 4e3f8248 authored by Tomáš Valenta's avatar Tomáš Valenta
Browse files

run hooks

parent f6fdf73d
No related branches found
No related tags found
No related merge requests found
# Generated by Django 4.2.4 on 2023-08-15 17:01 # Generated by Django 4.2.4 on 2023-08-15 17:01
from django.db import migrations
import wagtail.blocks import wagtail.blocks
import wagtail.fields import wagtail.fields
from django.db import migrations
class Migration(migrations.Migration): class Migration(migrations.Migration):
dependencies = [ dependencies = [
('home', '0022_alter_homepage_controller_and_more'), ("home", "0022_alter_homepage_controller_and_more"),
] ]
operations = [ operations = [
migrations.AddField( migrations.AddField(
model_name='homepage', model_name="homepage",
name='academic_council', name="academic_council",
field=wagtail.fields.StreamField([('person', wagtail.blocks.StructBlock([('name', wagtail.blocks.CharBlock(label='Jméno')), ('position', wagtail.blocks.TextBlock(label='Pracovní pozice', required=False)), ('email', wagtail.blocks.EmailBlock(label='E-mailová adresa', required=False))])), ('person_page', wagtail.blocks.PageChooserBlock(icon='user', label='Stránka osoby', page_type=['home.HomePersonPage']))], blank=True, null=True, use_json_field=True, verbose_name='Akademická rada'), field=wagtail.fields.StreamField(
[
(
"person",
wagtail.blocks.StructBlock(
[
("name", wagtail.blocks.CharBlock(label="Jméno")),
(
"position",
wagtail.blocks.TextBlock(
label="Pracovní pozice", required=False
),
),
(
"email",
wagtail.blocks.EmailBlock(
label="E-mailová adresa", required=False
),
),
]
),
),
(
"person_page",
wagtail.blocks.PageChooserBlock(
icon="user",
label="Stránka osoby",
page_type=["home.HomePersonPage"],
),
),
],
blank=True,
null=True,
use_json_field=True,
verbose_name="Akademická rada",
),
), ),
] ]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment