12 lines
258 B
Python
12 lines
258 B
Python
|
from wagtail.admin.panels import FieldPanel
|
||
|
from wagtail.fields import RichTextField
|
||
|
from wagtail.models import Page
|
||
|
|
||
|
|
||
|
class HomePage(Page):
|
||
|
body = RichTextField(blank=True)
|
||
|
|
||
|
content_panels = Page.content_panels + [
|
||
|
FieldPanel("body"),
|
||
|
]
|