14 lines
347 B
Python
14 lines
347 B
Python
from wagtail.core.models import Page
|
|
from wagtail.core.fields import RichTextField
|
|
from wagtail.admin.edit_handlers import FieldPanel
|
|
from project.common.models import Entity
|
|
|
|
|
|
class HomePage(Entity):
|
|
is_home = True
|
|
|
|
body = RichTextField()
|
|
|
|
content_panels = Entity.content_panels + [
|
|
FieldPanel('body', classname="full")
|
|
]
|