- {% if book.html_file %}
- <a href="{% url book_text book.slug %}">{% trans "Read online" %}</a>
- {% endif %}
- {% if book.pdf_file %}
- <a href="{{ book.pdf_file.url }}">{% trans "Download PDF" %}</a>
- {% endif %}
- {% if book.root_ancestor.epub_file %}
- <a href="{{ book.root_ancestor.epub_file.url }}">{% trans "Download EPUB" %}</a>
- {% endif %}
- {% if book.odt_file %}
- <a href="{{ book.odt_file.url }}">{% trans "Download ODT" %}</a>
- {% endif %}
- {% if book.txt_file %}
- <a href="{{ book.txt_file.url }}">{% trans "Download TXT" %}</a>
- {% endif %}
- {% if book.mp3_file %}
- <div id="czytamy-sluchajac-info">
- <a href="http://czytamysluchajac.pl/" id="czytamysluchajac-logo"><img src="{{ STATIC_URL }}img/czytamysluchajac-logo-small.png" /></a>
- <p>{% trans "Artist" %}: {{ book.get_extra_info_value.artist_name }}</p>
- {% if book.get_extra_info_value.director_name %}
- <p>{% trans "Director" %}: {{ book.get_extra_info_value.director_name }}</p>
- {% endif %}
+ {% if book.has_html_file %}
+ <a class="online" href="{% url book_text book.slug %}">{% trans "Read online" %}</a>
+ {% endif %}
+ <div class="download">
+ {% if book.pdf_file %}
+ <a href="{{ book.pdf_file.url }}"><img src="{{ STATIC_URL }}img/pdf.png" title="{% trans "Download PDF" %} – {% trans "for reading" %} {% trans "and printing using" %} Adobe Reader" %}" alt="{% trans "Download PDF" %}" /></a>
+ {% endif %}
+ {% if book.epub_file %}
+ <a href="{{ book.epub_file.url }}"><img src="{{ STATIC_URL }}img/epub.png" title="{% trans "Download EPUB" %} – {% trans "for reading" %} {% trans "on mobile devices" %}" alt="{% trans "Download EPUB" %}" /></a>
+ {% endif %}
+ {% if book.mobi_file %}
+ <a href="{{ book.mobi_file.url }}"><img src="{{ STATIC_URL }}img/mobi.png" title="{% trans "Download MOBI" %} – {% trans "for reading" %} {% trans "on mobile devices" %}" alt="{% trans "Download MOBI" %}" /></a>
+ {% endif %}
+ {% if book.txt_file %}
+ <a href="{{ book.txt_file.url }}"><img src="{{ STATIC_URL }}img/txt.png" title="{% trans "Download TXT" %} – {% trans "for reading" %} {% trans "on small displays, for example mobile phones" %}" alt="{% trans "Download TXT" %}" /></a>
+ {% endif %}
+
+ {% if book.pdf_file %}
+ <br/><a href="#" id="custom-pdf-link">{% trans "Dowload customized PDF" %}</a>.
+ {% endif %}
+ <div style="display: none" class="custom-pdf">
+ <form action="{% url catalogue.views.download_custom_pdf book.slug %}" method="GET">
+ {{custom_pdf_form.as_p}}
+ <input type="submit" value="{% trans "Download" %}"/>
+ </form>
+ </div>