mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 01:43:57 +07:00
9 lines
192 B
Python
9 lines
192 B
Python
from django.db import models
|
|
class BasePage(models.Model):
|
|
title = models.CharField(max_length=50)
|
|
slug = models.CharField(max_length=50)
|
|
|
|
|
|
class Meta:
|
|
abstract = True
|