X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/816252d1c876647d9fee4265303308c97f9cb489..f05c817ca001b62ae84cbaa6dd659965553dee7e:/apps/catalogue/models.py diff --git a/apps/catalogue/models.py b/apps/catalogue/models.py index d3b24d379..6863b2a40 100644 --- a/apps/catalogue/models.py +++ b/apps/catalogue/models.py @@ -186,6 +186,7 @@ class Book(models.Model): txt_file = models.FileField(_('TXT file'), upload_to=book_upload_path('txt'), blank=True) mp3_file = models.FileField(_('MP3 file'), upload_to=book_upload_path('mp3'), blank=True) ogg_file = models.FileField(_('OGG file'), upload_to=book_upload_path('ogg'), blank=True) + daisy_file = models.FileField(_('DAISY file'), upload_to=book_upload_path('daisy.zip'), blank=True) parent = models.ForeignKey('self', blank=True, null=True, related_name='children') @@ -273,6 +274,8 @@ class Book(models.Model): formats.append(u'MP3' % self.mp3_file.url) if self.ogg_file: formats.append(u'OGG' % self.ogg_file.url) + if self.daisy_file: + formats.append(u'DAISY' % self.daisy_file.url) formats = [mark_safe(format) for format in formats]