1
Fork 0
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.
theorangeone.net-legacy/project/common/models.py

14 lines
334 B
Python
Raw Normal View History

2016-11-24 21:44:08 +00:00
from wagtail.wagtailcore.models import Page
2016-11-28 21:56:44 +00:00
from django.db import models
2016-12-15 22:00:42 +00:00
from wagtailmetadata.models import MetadataPageMixin
2016-11-24 21:44:08 +00:00
2016-12-15 22:00:42 +00:00
class Entity(MetadataPageMixin, Page):
2016-11-25 20:23:02 +00:00
is_home = False
2016-11-28 21:56:44 +00:00
created = models.DateTimeField(auto_now_add=True)
modified = models.DateTimeField(auto_now=True)
2016-11-25 20:23:02 +00:00
class Meta:
abstract = True