Skip to content
Snippets Groups Projects
Commit 15f4c152 authored by jarmil's avatar jarmil
Browse files

PDP: FIX: topmenu

parent 9f87632a
No related branches found
No related tags found
No related merge requests found
# Generated by Django 3.1.2 on 2020-11-27 10:34
import wagtail.core.blocks
import wagtail.core.fields
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("pdp", "0002_pdpsubpage"),
]
operations = [
migrations.AlterField(
model_name="pdphomepage",
name="top_menu",
field=wagtail.core.fields.StreamField(
[
(
"item",
wagtail.core.blocks.StructBlock(
[
("name", wagtail.core.blocks.CharBlock(label="název")),
(
"page",
wagtail.core.blocks.PageChooserBlock(
label="stránka",
page_type=["pdp.PdpHomePage", "pdp.PdpSubPage"],
),
),
]
),
)
],
blank=True,
verbose_name="horní menu",
),
),
]
...@@ -6,6 +6,7 @@ from wagtail.admin.edit_handlers import ( ...@@ -6,6 +6,7 @@ from wagtail.admin.edit_handlers import (
MultiFieldPanel, MultiFieldPanel,
StreamFieldPanel, StreamFieldPanel,
) )
from wagtail.core import blocks
from wagtail.core.fields import StreamField from wagtail.core.fields import StreamField
from wagtail.core.models import Page from wagtail.core.models import Page
from wagtail.documents.blocks import DocumentChooserBlock from wagtail.documents.blocks import DocumentChooserBlock
...@@ -34,15 +35,29 @@ class PdpContentMixin(models.Model): ...@@ -34,15 +35,29 @@ class PdpContentMixin(models.Model):
abstract = True abstract = True
class MenuItemBlock(blocks.StructBlock):
name = blocks.CharBlock(label="název")
page = blocks.PageChooserBlock(
label="stránka",
page_type=["pdp.PdpHomePage", "pdp.PdpSubPage"],
)
class Meta:
label = "stránka"
class PdpHomePage( class PdpHomePage(
Page, Page,
PdpContentMixin, PdpContentMixin,
uniweb.UniwebTopmenuMixin,
MetadataPageMixin, MetadataPageMixin,
MatomoMixin, MatomoMixin,
): ):
### PANELS top_menu = StreamField(
[("item", MenuItemBlock())],
verbose_name="horní menu",
blank=True,
)
content_panels = Page.content_panels + [ content_panels = Page.content_panels + [
StreamFieldPanel("content"), StreamFieldPanel("content"),
......
...@@ -220,23 +220,14 @@ class UniwebContentMixin(models.Model): ...@@ -220,23 +220,14 @@ class UniwebContentMixin(models.Model):
abstract = True abstract = True
class UniwebTopmenuMixin(models.Model): class UniwebHomePage(Page, UniwebContentMixin, MetadataPageMixin, MatomoMixin):
### FIELDS
top_menu = StreamField( top_menu = StreamField(
[("item", MenuItemBlock())], [("item", MenuItemBlock())],
verbose_name="horní menu", verbose_name="horní menu",
blank=True, blank=True,
) )
class Meta:
abstract = True
class UniwebHomePage(
Page, UniwebContentMixin, UniwebTopmenuMixin, MetadataPageMixin, MatomoMixin
):
### FIELDS
# settings # settings
narrow_layout = models.BooleanField( narrow_layout = models.BooleanField(
"zúžený obsah stránky", "zúžený obsah stránky",
......
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