diff options
author | luxagraf <sng@luxagraf.net> | 2011-01-23 16:34:38 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2011-01-23 16:34:38 -0500 |
commit | b8d1913c21a7c0d80359f19aba8a4bc3ccd1e606 (patch) | |
tree | 214283104b3eb8e68b71d168ccec37fd667f87c8 /apps/projects/models/natparks.py | |
parent | f0f6aca044d63d973cccd476662e41db6bf3d00a (diff) |
added image dimensions and fixed css bugs
Diffstat (limited to 'apps/projects/models/natparks.py')
-rw-r--r-- | apps/projects/models/natparks.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/projects/models/natparks.py b/apps/projects/models/natparks.py index fa0c84b..f4a739d 100644 --- a/apps/projects/models/natparks.py +++ b/apps/projects/models/natparks.py @@ -1,8 +1,10 @@ from django.contrib.gis.db import models +from PIL import Image from blog.models import Entry from photos.models import PhotoGallery from locations.models import State + PUB_STATUS = ( (0, 'Draft'), (1, 'Published'), @@ -35,6 +37,8 @@ class NationalParks(models.Model): post = models.ForeignKey(Entry, null=True) gallery = models.ForeignKey(PhotoGallery, blank=True, null=True, verbose_name='photo set') image = models.FileField(upload_to=get_upload_path, null=True,blank=True,help_text="width: 980px, height: > 450px") + image_height = models.CharField(max_length=20, null=True,blank=True) + image_width = models.CharField(max_length=20, null=True,blank=True) objects = models.GeoManager() class Meta: @@ -45,3 +49,8 @@ class NationalParks(models.Model): def __unicode__(self): return self.unit_name + def save(self): + #get image dimensions + img = Image.open(self.image) + self.image_width, self.image_height = img.size + super(NationalParks, self).save()
\ No newline at end of file |