2 {% load catalogue_tags social_tags %}
4 <div class="{% block box-class %}book-box{% endblock %}">
5 <div class="book-box-inner" style="position: relative;">
8 <div class="cover-area">
10 {% if main_link %}<a href="{{ main_link }}">{% endif %}
12 {% thumbnail book.cover "139x193" as thumb %}
17 " alt="Cover" class="cover" />
18 {% if main_link %}</a>{% endif %}
20 {% block cover-area-extra %}{% endblock %}
24 <div class="book-box-body">
27 <div class="star {% if not request.user|likes:book %}un{% endif %}like">
28 <div class="if-like" >
29 <a id="social-book-sets-{{ book.slug }}" data-callback='social-book-sets' class='ajaxable' href='{% url "social_book_sets" book.slug %}'>
33 <div class="if-unlike">
34 <form id="social-like-book-{{ book.slug }}" data-callback='social-like-book' method='post' class='ajax-form' action='{% url "social_like_book" book.slug %}'>
36 <button type='submit'>☆</button>
42 <div class="book-box-head">
43 <div class="mono author">
44 {% for name, slug in related.tags.author %}
45 <a href="{% tag_url 'author' slug %}">{{ name }}</a>{% if not forloop.last %},
46 {% endif %}{% endfor %}{% for title, slug in related.parents %},
47 <a href="{% url 'book_detail' slug %}">{{ title }}</a>{% endfor %}
50 {% if main_link %}<a href="{{ main_link }}">{% endif %}
52 {% if main_link %}</a>{% endif %}
59 <span class="mono"> {% trans "Epoch" %}:</span> <span class="book-box-tag">
60 {% for name, slug in related.tags.epoch %}
61 <a href="{% tag_url 'epoch' slug %}">{{ name }}</a>
62 {% if not forloop.last %}<span>, </span>{% endif %}
66 <span class="mono"> {% trans "Kind" %}:</span> <span class="book-box-tag">
67 {% for name, slug in related.tags.kind %}
68 <a href="{% tag_url 'kind' slug %}">{{ name }}</a>
69 {% if not forloop.last %}<span>, </span>{% endif %}
73 <span class="mono"> {% trans "Genre" %}:</span> <span class="book-box-tag">
74 {% for name, slug in related.tags.genre %}
75 <a href="{% tag_url 'genre' slug %}">{{ name }}</a>
76 {% if not forloop.last %}<span>, </span>{% endif %}
85 <ul class="book-box-tools">
86 <li class="book-box-read">
87 {% if book.html_file %}
88 <a href="{% url 'book_text' book.slug %}" class="mono downarrow">{% trans "Read online" %}</a>
91 <li class="book-box-download hoverget">
92 <a class="mono downarrow hoverclick">{% trans "Download" %}</a>
93 <div class="book-box-formats mono">
94 {% if book.pdf_file %}
95 <span><a href="{{ book.pdf_file.url}}">PDF</a> {% trans "to print" %}</span>
97 {% if book.epub_file %}
98 <span><a href="{{ book.epub_file.url}}">EPUB</a> {% trans "for an e-book reader" %}</span>
100 {% if book.mobi_file %}
101 <span><a href="{{ book.mobi_file.url}}">MOBI</a> {% trans "for Kindle" %}</span>
103 {% if book.fb2_file %}
104 <span><a href="{{ book.fb2_file.url}}">FB2</a> {% trans "FictionBook" %}</span>
106 {% if book.txt_file %}
107 <span><a href="{{ book.txt_file.url}}">TXT</a> {% trans "for advanced usage" %}</span>
111 <li class="book-box-audiobook">
112 {% if related.media.mp3 or related.media.ogg %}
113 <a href="{% url 'book_player' book.slug %}" class="open-player mono downarrow">{% trans "Listen" %}</a>
117 {% block book-box-extra-info %}{% endblock %}
118 {% block box-append %}
120 {% block right-column %}
122 <div class="clearboth"></div>