- book = models.ForeignKey(Book, verbose_name=_('book'), null=True, blank=True)
- text = models.TextField(_('text'))
- small = models.BooleanField(_('small'), default=False,
- help_text=_('Make this cite display smaller.'))
- vip = models.CharField(_('VIP'), max_length=128, null=True, blank=True)
- link = models.URLField(_('link'))
- sticky = models.BooleanField(_('sticky'), default=False, db_index=True,
- help_text=_('Sticky cites will take precedense.'))
-
- image = models.ImageField(_('image'), upload_to='social/cite',
- null=True, blank=True,
- help_text=_('Best image is exactly 975px wide and weights under 100kB.'))
- image_shift = models.IntegerField(_('shift'), null=True, blank=True,
- help_text=_(u'Vertical shift, in percents. 0 means top, 100 is bottom. Default is 50%.'))
- image_title = models.CharField(_('title'), max_length=255,
- null=True, blank=True)
- image_author = models.CharField(_('author'),
- max_length=255, blank=True, null=True)
- image_link = models.URLField(_('link'), blank=True, null=True)
- image_license = models.CharField(_('license name'),
- max_length=255, blank=True, null=True)
- image_license_link = models.URLField(_('license link'), blank=True, null=True)
+ book = models.ForeignKey(Book, models.CASCADE, verbose_name='książka', null=True, blank=True)
+ text = models.TextField('tekst', blank=True)
+ small = models.BooleanField(
+ 'mały', default=False, help_text='Sprawia, że cytat wyświetla się mniejszym fontem.')
+ vip = models.CharField('VIP', max_length=128, null=True, blank=True)
+ link = models.URLField('odnośnik')
+ video = models.URLField('wideo', blank=True)
+ picture = models.ImageField('ilustracja', blank=True,
+ help_text='Najlepsze wymiary: 975 x 315 z tekstem, 487 x 315 bez tekstu.')
+ picture_alt = models.CharField('alternatywny tekst ilustracji', max_length=255, blank=True)
+ picture_title = models.CharField('tytuł ilustracji', max_length=255, null=True, blank=True)
+ picture_author = models.CharField('autor ilustracji', max_length=255, blank=True, null=True)
+ picture_link = models.URLField('link ilustracji', blank=True, null=True)
+ picture_license = models.CharField('nazwa licencji ilustracji', max_length=255, blank=True, null=True)
+ picture_license_link = models.URLField('adres licencji ilustracji', blank=True, null=True)
+
+ sticky = models.BooleanField('przyklejony', default=False, db_index=True,
+ help_text='Przyklejone cytaty mają pierwszeństwo.')
+ background_plain = models.BooleanField('jednobarwne tło', default=False)
+ background_color = models.CharField('kolor tła', max_length=32, blank=True)
+ image = models.ImageField(
+ 'obraz tła', upload_to='social/cite', null=True, blank=True,
+ help_text='Najlepsze tło ma wielkość 975 x 315 px i waży poniżej 100kB.')
+ image_title = models.CharField('tytuł obrazu tła', max_length=255, null=True, blank=True)
+ image_author = models.CharField('autor obrazu tła', max_length=255, blank=True, null=True)
+ image_link = models.URLField('link obrazu tła', blank=True, null=True)
+ image_license = models.CharField('nazwa licencji obrazu tła', max_length=255, blank=True, null=True)
+ image_license_link = models.URLField('adres licencji obrazu tła', blank=True, null=True)
+
+ created_at = models.DateTimeField('utworzony', auto_now_add=True)
+ group = models.ForeignKey(BannerGroup, verbose_name='grupa', null=True, blank=True, on_delete=models.SET_NULL)