from django.db import models class Page(models.Model): __yamdl__ = True title = models.CharField(max_length=255) content = models.TextField()