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
2016-11-28 21:58:34 +00:00

12 lines
262 B
Python

from wagtail.wagtailcore.models import Page
from django.db import models
class Entity(Page):
is_home = False
created = models.DateTimeField(auto_now_add=True)
modified = models.DateTimeField(auto_now=True)
class Meta:
abstract = True