1
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
wagtail-website-2018-spike/project/home/models.py
2018-07-27 21:37:11 +01:00

14 lines
310 B
Python

from wagtail.admin.edit_handlers import FieldPanel
from project.common.models import Entity
from django.db import models
class HomePage(Entity):
is_home = True
body = models.CharField(max_length=255)
content_panels = Entity.content_panels + [
FieldPanel('body', classname="full")
]