diff options
author | luxagraf <luxagraf@gmail.com> | 2011-08-16 22:07:54 -0400 |
---|---|---|
committer | luxagraf <luxagraf@gmail.com> | 2011-08-16 22:07:54 -0400 |
commit | 0b481fd7931c2ae20ca21f89a87f2ba6a6c01e10 (patch) | |
tree | fbcb1ccee6512aa91b665f231a4405ecedef439f /apps/blog | |
parent | 5e76a7bbb5d114ecd310ad3f408c33331a072037 (diff) |
cleaned up html in archives, eliminated some nav and section tags
Diffstat (limited to 'apps/blog')
-rw-r--r-- | apps/blog/models.py | 2 |
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) |