diff options
Diffstat (limited to 'lib/chunks/models.py')
-rwxr-xr-x | lib/chunks/models.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/chunks/models.py b/lib/chunks/models.py deleted file mode 100755 index cdb36be..0000000 --- a/lib/chunks/models.py +++ /dev/null @@ -1,14 +0,0 @@ -from django.db import models - -class Chunk(models.Model): - """ - A Chunk is a piece of content associated - with a unique key that can be inserted into - any template with the use of a special template - tag - """ - key = models.CharField(help_text="A unique name for this chunk of content", blank=False, max_length=255, unique=True) - content = models.TextField(blank=True) - - def __unicode__(self): - return u"%s" % (self.key,) |