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):
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)
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)