9 lines
157 B
Python
9 lines
157 B
Python
|
from django.db import models
|
||
|
|
||
|
class Page(models.Model):
|
||
|
__yamdl__ = True
|
||
|
|
||
|
title = models.CharField(max_length=255)
|
||
|
|
||
|
content = models.TextField()
|