16 lines
412 B
Python
16 lines
412 B
Python
from django.db import models
|
|
|
|
from wagtail.models import Page
|
|
from wagtail.fields import StreamField
|
|
from wagtail import blocks
|
|
from wagtail.admin.panels import FieldPanel
|
|
from wagtail.images.blocks import ImageChooserBlock
|
|
|
|
|
|
# https://docs.wagtail.org/en/stable/topics/pages.html
|
|
# https://docs.wagtail.org/en/stable/reference/streamfield/blocks.html#wagtail.fields.StreamField
|
|
|
|
|
|
class HomePage(Page):
|
|
pass
|