From a9925ebffe713307d6bedecd670df1490aa206c8 Mon Sep 17 00:00:00 2001 From: Radek Czajka Date: Fri, 25 Nov 2022 15:44:40 +0100 Subject: [PATCH] Cover info in audiobooks zip. --- src/catalogue/models/book.py | 1 + src/catalogue/templates/catalogue/audiobook_zip_readme.txt | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/catalogue/models/book.py b/src/catalogue/models/book.py index c03f7a3d0..f002158a3 100644 --- a/src/catalogue/models/book.py +++ b/src/catalogue/models/book.py @@ -510,6 +510,7 @@ class Book(models.Model): licenses.add(license) readme = render_to_string('catalogue/audiobook_zip_readme.txt', { 'licenses': licenses, + 'meta': self.wldocument2().meta, }) return create_zip(paths, "%s_%s" % (self.slug, format_), {'informacje.txt': readme}) diff --git a/src/catalogue/templates/catalogue/audiobook_zip_readme.txt b/src/catalogue/templates/catalogue/audiobook_zip_readme.txt index f7933ba48..62d72368b 100644 --- a/src/catalogue/templates/catalogue/audiobook_zip_readme.txt +++ b/src/catalogue/templates/catalogue/audiobook_zip_readme.txt @@ -7,6 +7,8 @@ Audiobooki Wolnych Lektur są udostępniane na wolnych licencjach, co oznacza, {% if licenses %}Ten utwór jest jest udostępniony na {% for lic in licenses %}{{ lic }}{% if not forloop.last %}, {% endif %}{% endfor %}. +{% endif %}{% if meta.cover_by %}Okładka na podstawie: {{ meta.cover_by|safe }}{% if meta.cover_source %}, {{ meta.cover_source }}{% endif %}. + {% endif %}Przekaż 1% na wolną bibliotekę KRS 0000070056: https://wolnelektury.pl/info/wesprzyj-nas/ Zostań Przyjacielem Wolnych Lektur: https://wolnelektury.pl/pomagam/ -- 2.20.1