Files
kursy-mirror/home/models.py

15 lines
303 B
Python

from wagtail.models import Page
from wagtail.fields import RichTextField
class HomePage(Page):
body = RichTextField(blank=True)
content_panels = Page.content_panels + ["body"]
class CoursePage(Page):
body = RichTextField(blank=True)
content_panels = Page.content_panels + ["body"]