13 lines
287 B
Python
13 lines
287 B
Python
|
from django.db import models
|
||
|
|
||
|
from wagtail.models import Page
|
||
|
from wagtail.fields import RichTextField
|
||
|
from wagtail.admin.panels import FieldPanel
|
||
|
|
||
|
class HomePage(Page):
|
||
|
body = RichTextField(blank=True)
|
||
|
|
||
|
content_panels = Page.content_panels + [
|
||
|
FieldPanel('body'),
|
||
|
]
|