+ picture = models.ImageField(_('picture'), blank=True,
+ help_text='Najlepsze wymiary: 975 x 315 z tekstem, 487 x 315 bez tekstu.')
+ picture_alt = models.CharField(_('picture alternative text'), max_length=255, blank=True)
+ picture_title = models.CharField(_('picture title'), max_length=255, null=True, blank=True)
+ picture_author = models.CharField(_('picture author'), max_length=255, blank=True, null=True)
+ picture_link = models.URLField(_('picture link'), blank=True, null=True)
+ picture_license = models.CharField(_('picture license name'), max_length=255, blank=True, null=True)
+ picture_license_link = models.URLField(_('picture license link'), blank=True, null=True)