mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 04:51:24 +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
|