X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/388c1eacf6a2f87889446f27262e5e52716fdbae..891b9e3b7ecaedc9ac32bc941400a267c77482a0:/apps/sponsors/models.py diff --git a/apps/sponsors/models.py b/apps/sponsors/models.py index 598d5627b..28ef76eee 100644 --- a/apps/sponsors/models.py +++ b/apps/sponsors/models.py @@ -1,3 +1,7 @@ +# -*- coding: utf-8 -*- +# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# from django.db import models from django.utils.translation import ugettext_lazy as _ from django.template.loader import render_to_string @@ -11,11 +15,11 @@ class Sponsor(models.Model): _description = models.CharField(_('description'), blank=True, max_length=255) logo = ImageWithThumbnailsField( _('logo'), - upload_to='sponsors/sponsor/logo', + upload_to='sponsorzy/sponsor/logo', thumbnail={ 'size': (120, 60), 'extension': 'png', - 'options': ['upscale', 'pad', 'detail'], + 'options': ['pad', 'detail'], }) url = models.URLField(_('url'), blank=True, verify_exists=False) @@ -31,7 +35,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 +57,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)