X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/d5da2664b063711aee28851f41062e3666963fb3..958978dc2189eb10877ed310eb8313858e589b4a:/apps/sponsors/models.py diff --git a/apps/sponsors/models.py b/apps/sponsors/models.py index 1df990f68..ec0db3f39 100644 --- a/apps/sponsors/models.py +++ b/apps/sponsors/models.py @@ -2,13 +2,21 @@ from django.db import models from django.utils.translation import ugettext_lazy as _ from django.template.loader import render_to_string +from sorl.thumbnail.fields import ImageWithThumbnailsField from sponsors.fields import JSONField class Sponsor(models.Model): name = models.CharField(_('name'), max_length=120) _description = models.CharField(_('description'), blank=True, max_length=255) - logo = models.ImageField(_('logo'), upload_to='sponsors/sponsor/logo') + logo = ImageWithThumbnailsField( + _('logo'), + upload_to='sponsorzy/sponsor/logo', + thumbnail={ + 'size': (120, 60), + 'extension': 'png', + 'options': ['pad', 'detail'], + }) url = models.URLField(_('url'), blank=True, verify_exists=False) def __unicode__(self): @@ -23,7 +31,6 @@ class Sponsor(models.Model): class SponsorPage(models.Model): name = models.CharField(_('name'), max_length=120) - column_width = models.PositiveIntegerField(_('column width'), default=200) sponsors = JSONField(_('sponsors'), default={}) _html = models.TextField(blank=True, editable=False) @@ -46,7 +53,6 @@ class SponsorPage(models.Model): def save(self, *args, **kwargs): self._html = render_to_string('sponsors/page.html', { - 'column_width': self.column_width, 'sponsors': self.populated_sponsors(), }) return super(SponsorPage, self).save(*args, **kwargs)