X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/4e7302190468a80e5cd558cc4c73985b16153e0a..a1ea2966e73e96e9ea5a192320353e8863687b41:/wolnelektury/templates/catalogue/book_detail.html diff --git a/wolnelektury/templates/catalogue/book_detail.html b/wolnelektury/templates/catalogue/book_detail.html index 0158eb86a..f3a7b53ba 100644 --- a/wolnelektury/templates/catalogue/book_detail.html +++ b/wolnelektury/templates/catalogue/book_detail.html @@ -40,40 +40,70 @@

{% trans "Put a book" %} {% trans "on the shelf!" %}

- {% if book.html_file %} - {% trans "Read online" %} - {% endif %} - {% if book.pdf_file %} - {% trans "Download PDF" %} - {% endif %} - {% if book.root_ancestor.epub_file %} - {% trans "Download EPUB" %} - {% endif %} - {% if book.odt_file %} - {% trans "Download ODT" %} - {% endif %} - {% if book.txt_file %} - {% trans "Download TXT" %} - {% endif %} - {% if book.mp3_file %} -
- -

{% trans "Artist" %}: {{ book.get_extra_info_value.artist_name }}

- {% if book.get_extra_info_value.director_name %} -

{% trans "Director" %}: {{ book.get_extra_info_value.director_name }}

- {% endif %} + {% if book.has_html_file %} + {% trans "Read online" %} + {% endif %} +
+ {% if book.has_pdf_file %} + {% trans + {% endif %} + {% if book.root_ancestor.epub_file %} + {% trans + {% endif %} + {% if book.has_txt_file %} + {% trans + {% endif %} + {% for media in book.get_odt %} + {% trans + {% endfor %}
- {% endif %} - {% if book.mp3_file %}{% trans "Download MP3" %}{% endif %} - {% if book.ogg_file %}{% trans "Download Ogg Vorbis" %}{% endif %} - {% if book.daisy_file %}{% trans "Download DAISY" %}{% endif %} - {% if book.mp3_file %} - - - - - - {% endif %} + {% if book.has_mp3_file or book.has_ogg_file or book.has_daisy_file %} +

+ {% trans "Audiobooks" %}: + + {% if book.has_mp3_file %}MP3{% endif %} + {% if book.has_ogg_file %}OGG{% endif %} + {% if book.has_daisy_file %}DAISY{% endif %} + +

+
+ Speaker icon + {% if book.has_mp3_file %} +
    + {% for media in book.get_mp3 %} +
  • + {{ media.name }}
    + {% trans "Artist" %}: {{ media.get_extra_info_value.artist_name }}
    + {% trans "Director"%}: {{ media.get_extra_info_value.director_name }}
    + + + + + + +
  • + {% endfor %} +
+ {% endif %} + + {% if book.has_ogg_file %} + + {% endif %} + {% if book.has_daisy_file %} + + {% endif %} +
+

{% blocktrans with 'CzytamySłuchając' as cs %}Audiobooks were prepared as a part of the {{ cs }} project.{% endblocktrans %} +

+ {% endif %}
@@ -96,7 +126,6 @@

{% trans "Details" %}

{% trans "Other resources" %}

+

{% trans "View XML source" %}

{% trans "Work's themes " %}

@@ -149,4 +181,4 @@

* {% trans "Loading" %}

-{% endblock %} \ No newline at end of file +{% endblock %}