summaryrefslogtreecommitdiff
path: root/app/guide/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/guide/models.py')
-rw-r--r--app/guide/models.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/app/guide/models.py b/app/guide/models.py
index 2e19006..5a2036d 100644
--- a/app/guide/models.py
+++ b/app/guide/models.py
@@ -47,19 +47,13 @@ class Guide(models.Model):
dek = models.TextField(null=True,blank=True)
pub_date = models.DateTimeField('Date published')
location = models.ForeignKey(Location, null=True, blank=True)
- country = models.ForeignKey(Country, null=True, blank=True)
- region = models.ForeignKey(Region, null=True, blank=True)
status = models.IntegerField(choices=PUB_STATUS, default=0)
photo_gallery = models.ForeignKey(PhotoGallery, blank=True, null=True, verbose_name='photo set')
meta_description = models.CharField(max_length=256, null=True, blank=True)
template_name = models.IntegerField(choices=TEMPLATES, default=0)
tags = TaggableManager(blank=True)
image = models.FileField(upload_to=get_upload_path, null=True,blank=True)
- image_height = models.CharField(max_length=20, null=True,blank=True)
- image_width = models.CharField(max_length=20, null=True,blank=True)
thumbnail = models.FileField(upload_to=get_tn_path, null=True,blank=True)
- thumb_height = models.CharField(max_length=20, null=True,blank=True)
- thumb_width = models.CharField(max_length=20, null=True,blank=True)
@property