2010-02-27 11:37:22 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
2011-02-22 14:54:38 +00:00
|
|
|
from __future__ import division, with_statement
|
2011-10-13 10:12:00 +00:00
|
|
|
|
2011-01-03 14:14:54 +00:00
|
|
|
from django.db import models
|
2011-01-01 11:44:42 +00:00
|
|
|
|
2011-01-21 15:44:46 +00:00
|
|
|
|
2010-02-10 13:10:14 +00:00
|
|
|
class Page(models.Model):
|
|
|
|
created = models.DateTimeField(auto_now_add=True)
|
|
|
|
modified = models.DateTimeField(auto_now=True)
|
|
|
|
name = models.CharField(max_length=1024, unique=True)
|
|
|
|
body = models.TextField(blank=True)
|
|
|
|
|
|
|
|
def __unicode__(self):
|
|
|
|
return self.name
|
2010-02-27 10:49:06 +00:00
|
|
|
|