X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/20be4d9d8dad31ecbda183f4b5c74c9d80799f72..a1ea2966e73e96e9ea5a192320353e8863687b41:/wolnelektury/templates/catalogue/book_detail.html diff --git a/wolnelektury/templates/catalogue/book_detail.html b/wolnelektury/templates/catalogue/book_detail.html index 089922b29..f3a7b53ba 100644 --- a/wolnelektury/templates/catalogue/book_detail.html +++ b/wolnelektury/templates/catalogue/book_detail.html @@ -1,62 +1,112 @@ {% extends "base.html" %} +{% load i18n %} {% load catalogue_tags pagination_tags %} -{% block title %}Lektura {{ book.title }} w WolneLektury.pl{% endblock %} +{% block title %}{{ book.title }} {% trans "on WolneLektury.pl" %}{% endblock %} {% block bodyid %}book-detail{% endblock %} {% block body %} -

{{ book.title }}, {{ categories.author|join:", " }}

+

{% book_title book %}

-

{{ form.q }} lub wróć do strony głównej

+

{{ form.q }} {% trans "or" %} {% trans "return to main page" %}

- +
+ + {% if extra_info.license %} -

Utwór jest udostępniony na licencji {{ extra_info.license_description }}.

+

{% trans "Work is licensed under " %} {{ extra_info.license_description }}.

{% endif %} -

Na podstawie: {{ extra_info.source_name }}

+

{% trans "Based on" %}: {{ extra_info.source_name }}

{% if book.has_description %}
- {{ book.description|safe }} +
{{ book.description|safe }}
+
{{ book.description|safe|truncatewords_html:30 }}
-

Zwiń opis ▲

+

{% endif %}
-

Wrzuć lekturę na półkę!

+

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

- {% if book.html_file %} - Czytaj online - {% endif %} - {% if book.pdf_file %} - Pobierz plik PDF - {% endif %} - {% if book.odt_file %} - Pobierz plik ODT - {% endif %} - {% if book.txt_file %} - Pobierz plik TXT - {% endif %} - {% if book.mp3_file %} -
- -

Czyta: {{ book.get_extra_info_value.artist_name }}

-

Reżyseruje: {{ book.get_extra_info_value.director_name }}

+ {% 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 %}Pobierz plik MP3{% endif %} - {% if book.ogg_file %}Pobierz plik Ogg Vorbis{% 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 %}
- + {% if book_children %} {% autopaginate book_children 10 %}
@@ -68,52 +118,55 @@
{% paginate %} {% endif %} - +
- +
-

O utworze

+

{% trans "Details" %}

  • - Autor: + {% trans "Author" %}: {% for tag in categories.author %} - {{ tag }} + {{ tag }}{% if not forloop.last %}, {% endif %} {% endfor %}
  • - Epoka: + {% trans "Epoch" %}: {% for tag in categories.epoch %} - {{ tag }} + {{ tag }}{% if not forloop.last %}, {% endif %} {% endfor %}
  • - Rodzaj: + {% trans "Kind" %}: {% for tag in categories.kind %} - {{ tag }} + {{ tag }}{% if not forloop.last %}, {% endif %} {% endfor %}
  • - Gatunek: + {% trans "Genre" %}: {% for tag in categories.genre %} - {{ tag }} + {{ tag }}{% if not forloop.last %}, {% endif %} {% endfor %} -
  • +
-

W innych miejscach

+

{% trans "Other resources" %}

+

{% trans "View XML source" %}

-

Motywy w utworze

+

{% trans "Work's themes " %}

- +
-

* Ładowanie

+

* {% trans "Loading" %}

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