diff options
Diffstat (limited to 'lib/chunks/models.py')
-rwxr-xr-x | lib/chunks/models.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/chunks/models.py b/lib/chunks/models.py new file mode 100755 index 0000000..cdb36be --- /dev/null +++ b/lib/chunks/models.py @@ -0,0 +1,14 @@ +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,) |