10 lines
129 B
Python
10 lines
129 B
Python
from wagtail.wagtailcore.models import Page
|
|
|
|
|
|
class Entity(Page):
|
|
is_home = False
|
|
|
|
class Meta:
|
|
abstract = True
|
|
|
|
|