3 <div class="{% block box-class %}book-box{% endblock %}">
4 <div class="book-box-inner">
5 <a href="{{ book.get_absolute_url }}">
8 {% thumbnail book.cover "216x288" as thumb %}
16 {% block right-column %}
18 <div class="book-box-body">
19 <div class="book-box-head">
20 <div class="mono author">
21 {% for author in tags.author %}
25 <div class="title">{{ book.title }}</div>
30 <span class="mono">{% trans "Epoch" %}:</span> <span class="book-box-tag">
31 {% for tag in tags.epoch %}
32 <a href="{{ tag.get_absolute_url }}">{{ tag.name }} </a>
36 <span class="mono">{% trans "Kind" %}:</span> <span class="book-box-tag">
37 {% for tag in tags.kind %}
38 <a href="{{ tag.get_absolute_url }}">{{ tag.name }} </a>
42 <span class="mono">{% trans "Genre" %}:</span> <span class="book-box-tag">
43 {% for tag in tags.genre %}
44 <a href="{{ tag.get_absolute_url }}">{{ tag.name }} </a>
51 <ul class="book-box-tools">
52 <li class="book-box-read">
53 {% if book.html_file %}
54 <a href="{% url book_text book.urlid %}" class="mono downarrow">{% trans "Read online" %}</a>
57 <li class="book-box-download">
58 <a class="mono downarrow">{% trans "Download" %}</a>
59 <div class="book-box-formats mono">
61 <span><a href="{{formats.pdf.url}}">PDF</a> do wydruku</span>
64 <span><a href="{{formats.epub.url}}">EPUB</a> na czytnik</span>
67 <span><a href="{{formats.mobi.url}}">MOBI</a> na Kindle</span>
70 <span><a href="{{formats.txt.url}}">TXT</a> do zadaĆ specjalnych</span>
74 <li class="book-box-audiobook">
75 {% if book.has_mp3_file %}
76 <a href="" class="mono downarrow">{% trans "Audiobook" %}</a>
80 {% block box-append %}