summaryrefslogtreecommitdiff
path: root/app/lib/chunks/models.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2012-09-22 23:28:23 -0400
committerluxagraf <sng@luxagraf.net>2012-09-22 23:28:23 -0400
commitb0dca20882c18dbb6196bfc407b1cb43601f3040 (patch)
tree67eab998b029261cabaca3f13d83f40594072db8 /app/lib/chunks/models.py
parentf135599f20bb343219c573339191e317f9807ff0 (diff)
cleared out some more old, unused cruft in lib
Diffstat (limited to 'app/lib/chunks/models.py')
-rwxr-xr-xapp/lib/chunks/models.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/app/lib/chunks/models.py b/app/lib/chunks/models.py
deleted file mode 100755
index cdb36be..0000000
--- a/app/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,)