X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/388c1eacf6a2f87889446f27262e5e52716fdbae..75349c5b71dfbc94bc28319c86794b56da36a08b:/apps/sponsors/models.py diff --git a/apps/sponsors/models.py b/apps/sponsors/models.py index 598d5627b..03b0d656f 100644 --- a/apps/sponsors/models.py +++ b/apps/sponsors/models.py @@ -15,7 +15,7 @@ class Sponsor(models.Model): thumbnail={ 'size': (120, 60), 'extension': 'png', - 'options': ['upscale', 'pad', 'detail'], + 'options': ['pad', 'detail'], }) url = models.URLField(_('url'), blank=True, verify_exists=False) @@ -31,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) @@ -54,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)