9 lines
229 B
Python
9 lines
229 B
Python
from django.db import models
|
|
|
|
class Page(models.Model):
|
|
__yamdl__ = True
|
|
|
|
title = models.CharField(max_length=255)
|
|
slug = models.CharField(max_length=128, unique=True, db_index=True)
|
|
|
|
content = models.TextField()
|