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 {% if main_link %}<a href="{{ main_link }}">{% endif %}
11 {% thumbnail book.cover "139x193" as thumb %}
18 {% if main_link %}</a>{% endif %}
19 <div class="book-box-body">
22 <div class="star {% if not request.user|likes:book %}un{% endif %}like">
23 <div class="if-like" >
24 <a id="social-book-sets-{{ book.slug }}" data-callback='social-book-sets' class='ajaxable' href='{% url social_book_sets book.slug %}'>
28 <div class="if-unlike">
29 <form id="social-like-book-{{ book.slug }}" data-callback='social-like-book' method='post' class='ajax-form' action='{% url social_like_book book.slug %}'>
31 <button type='submit'>☆</button>
37 <div class="book-box-head">
38 <div class="mono author">
39 {% for name, slug in related.tags.author %}
40 <a href="{% tag_url 'author' slug %}">{{ name }}</a>{% if not forloop.last %},
41 {% endif %}{% endfor %}{% for title, slug in related.parents %},
42 <a href="{% url book_detail slug %}">{{ title }}</a>{% endfor %}
45 {% if main_link %}<a href="{{ main_link }}">{% endif %}
47 {% if main_link %}</a>{% endif %}
54 <span class="mono"> {% trans "Epoch" %}:</span> <span class="book-box-tag">
55 {% for name, slug in related.tags.epoch %}
56 <a href="{% tag_url 'epoch' slug %}">{{ name }}</a>
57 {% if not forloop.last %}<span>, </span>{% endif %}
61 <span class="mono"> {% trans "Kind" %}:</span> <span class="book-box-tag">
62 {% for name, slug in related.tags.kind %}
63 <a href="{% tag_url 'kind' slug %}">{{ name }}</a>
64 {% if not forloop.last %}<span>, </span>{% endif %}
68 <span class="mono"> {% trans "Genre" %}:</span> <span class="book-box-tag">
69 {% for name, slug in related.tags.genre %}
70 <a href="{% tag_url 'genre' slug %}">{{ name }}</a>
71 {% if not forloop.last %}<span>, </span>{% endif %}
80 <ul class="book-box-tools">
81 <li class="book-box-read">
82 {% if book.html_file %}
83 <a href="{% url book_text book.slug %}" class="mono downarrow">{% trans "Read online" %}</a>
86 <li class="book-box-download hoverget">
87 <a class="mono downarrow hoverclick">{% trans "Download" %}</a>
88 <div class="book-box-formats mono">
89 {% if book.pdf_file %}
90 <span><a href="{{ book.pdf_file.url}}">PDF</a> {% trans "to print" %}</span>
92 {% if book.epub_file %}
93 <span><a href="{{ book.epub_file.url}}">EPUB</a> {% trans "for an e-book reader" %}</span>
95 {% if book.mobi_file %}
96 <span><a href="{{ book.mobi_file.url}}">MOBI</a> {% trans "for Kindle" %}</span>
98 {% if book.txt_file %}
99 <span><a href="{{ book.txt_file.url}}">TXT</a> {% trans "for advanced usage" %}</span>
103 <li class="book-box-audiobook">
104 {% if related.media.mp3 or related.media.ogg %}
105 <a href="{% url book_player book.slug %}" class="open-player mono downarrow">{% trans "Listen" %}</a>
109 {% block book-box-extra-info %}{% endblock %}
110 {% block box-append %}
112 {% block right-column %}
114 <div class="clearboth"></div>