summaryrefslogtreecommitdiff
path: root/apps/blog
diff options
context:
space:
mode:
authorluxagraf <luxagraf@gmail.com>2011-08-16 22:07:54 -0400
committerluxagraf <luxagraf@gmail.com>2011-08-16 22:07:54 -0400
commit0b481fd7931c2ae20ca21f89a87f2ba6a6c01e10 (patch)
treefbcb1ccee6512aa91b665f231a4405ecedef439f /apps/blog
parent5e76a7bbb5d114ecd310ad3f408c33331a072037 (diff)
cleaned up html in archives, eliminated some nav and section tags
Diffstat (limited to 'apps/blog')
-rw-r--r--apps/blog/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/blog/models.py b/apps/blog/models.py
index 9a104d7..37841fe 100644
--- a/apps/blog/models.py
+++ b/apps/blog/models.py
@@ -71,7 +71,7 @@ class Entry(models.Model):
dek = models.TextField(null=True,blank=True)
pub_date = models.DateTimeField('Date published')
enable_comments = models.BooleanField(default=True)
- point = models.PointField(null=True)
+ point = models.PointField(null=True, blank=True)
location = models.ForeignKey(Location, null=True)
region = models.ForeignKey(Region, null=True)
status = models.IntegerField(choices=PUB_STATUS, default=0)