15 lines
377 B
Python
Executable file
15 lines
377 B
Python
Executable file
from wagtail.wagtailcore.models import Page
|
|
from wagtail.wagtailcore.fields import RichTextField
|
|
from wagtail.wagtailadmin.edit_handlers import FieldPanel
|
|
|
|
from project.common.models import Entity
|
|
|
|
|
|
class HomePage(Entity):
|
|
is_home = True
|
|
|
|
body = RichTextField(blank=True)
|
|
|
|
content_panels = Page.content_panels + [
|
|
FieldPanel('body', classname="full")
|
|
]
|