Select Git revision
0065_alter_mainhomepage_footer_other_links.py
0065_alter_mainhomepage_footer_other_links.py 1.28 KiB
# Generated by Django 4.1.10 on 2024-01-03 19:04
import wagtail.blocks
import wagtail.fields
from django.db import migrations
import shared.blocks.main
class Migration(migrations.Migration):
dependencies = [
("main", "0064_alter_mainhomepage_content"),
]
operations = [
migrations.AlterField(
model_name="mainhomepage",
name="footer_other_links",
field=wagtail.fields.StreamField(
[
(
"other_links",
wagtail.blocks.StructBlock(
[
("title", wagtail.blocks.CharBlock(label="Titulek")),
(
"list",
wagtail.blocks.ListBlock(
shared.blocks.main.LinkBlock,
label="Seznam odkazů s titulkem",
),
),
]
),
)
],
blank=True,
use_json_field=True,
verbose_name="Odkazy v zápatí webu",
),
),
]