- _('sort key by author'), max_length=120, db_index=True, editable=False, default='')
- created_at = models.DateTimeField(_('creation date'), auto_now_add=True, db_index=True)
- changed_at = models.DateTimeField(_('creation date'), auto_now=True, db_index=True)
- xml_file = models.FileField(_('xml file'), upload_to="xml", storage=picture_storage)
- image_file = ImageField(_('image file'), upload_to="images", storage=picture_storage)
- html_file = models.FileField(_('html file'), upload_to="html", storage=picture_storage)
- areas_json = models.TextField(_('picture areas JSON'), default='{}', editable=False)
- extra_info = models.TextField(_('extra information'), default='{}')
+ 'klucz sortowania wg autora', max_length=120, db_index=True, editable=False, default='')
+ created_at = models.DateTimeField('data utworzenia', auto_now_add=True, db_index=True)
+ changed_at = models.DateTimeField('data zmiany', auto_now=True, db_index=True)
+ xml_file = models.FileField('plik xml', upload_to="xml", storage=picture_storage)
+ image_file = ImageField('plik obrazu', upload_to="images", storage=picture_storage)
+ html_file = models.FileField('plik html', upload_to="html", storage=picture_storage)
+ areas_json = models.TextField('obszary w JSON', default='{}', editable=False)
+ extra_info = models.TextField('dodatkowa informacja', default='{}')