diff options
author | luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f> | 2010-03-12 03:42:13 +0000 |
---|---|---|
committer | luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f> | 2010-03-12 03:42:13 +0000 |
commit | ef35853e54e1572dc1de4fd2311d00dfd16e4f75 (patch) | |
tree | fe712fa6a1a2c38761e0458bf1684274a510df32 /apps/blog/models.py | |
parent | 0882d73ca1ba4c84ce24c946548c80d9e4d1c04e (diff) |
added projects
Diffstat (limited to 'apps/blog/models.py')
-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 bdbcd82..fb0dac6 100644 --- a/apps/blog/models.py +++ b/apps/blog/models.py @@ -66,7 +66,7 @@ class Entry(models.Model): status = models.IntegerField(choices=PUB_STATUS, default=0) photo_gallery = models.ForeignKey(PhotoGallery, blank=True, null=True, verbose_name='photo set') thumbnail = models.FileField(upload_to=get_upload_path, null=True,blank=True) - title_keywords = models.CharField(max_length=200, null=True, blank=True) + meta_description = models.CharField(max_length=256, null=True, blank=True) topics = models.ManyToManyField(Topic, blank=True) @property |