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 <a href="{{ main_link }}">
11 {% thumbnail book.cover "139x193" as thumb %}
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 %}'>
30 <button type='submit'>☆</button>
36 <div class="book-box-head">
37 <div class="mono author">
38 {% for name, slug in related.tags.author %}
39 <a href="{% tag_url 'author' slug %}">{{ name }}</a>{% if not forloop.last %},
40 {% endif %}{% endfor %}{% for title, slug in related.parents %},
41 <a href="{% url book_detail slug %}">{{ title }}</a>{% endfor %}
43 <div class="title"><a href="{{ main_link }}">{{ book.title }}</a></div>
49 <span class="mono"> {% trans "Epoch" %}:</span> <span class="book-box-tag">
50 {% for name, slug in related.tags.epoch %}
51 <a href="{% tag_url 'epoch' slug %}">{{ name }}</a>
52 {% if not forloop.last %}<span>, </span>{% endif %}
56 <span class="mono"> {% trans "Kind" %}:</span> <span class="book-box-tag">
57 {% for name, slug in related.tags.kind %}
58 <a href="{% tag_url 'kind' slug %}">{{ name }}</a>
59 {% if not forloop.last %}<span>, </span>{% endif %}
63 <span class="mono"> {% trans "Genre" %}:</span> <span class="book-box-tag">
64 {% for name, slug in related.tags.genre %}
65 <a href="{% tag_url 'genre' slug %}">{{ name }}</a>
66 {% if not forloop.last %}<span>, </span>{% endif %}
75 <ul class="book-box-tools">
76 <li class="book-box-read">
77 {% if book.html_file %}
78 <a href="{% url book_text book.slug %}" class="mono downarrow">{% trans "Read online" %}</a>
81 <li class="book-box-download">
82 <a class="mono downarrow">{% trans "Download" %}</a>
83 <div class="book-box-formats mono">
84 {% if book.pdf_file %}
85 <span><a href="{{ book.pdf_file.url}}">PDF</a> {% trans "to print" %}</span>
87 {% if book.epub_file %}
88 <span><a href="{{ book.epub_file.url}}">EPUB</a> {% trans "for an e-book reader" %}</span>
90 {% if book.mobi_file %}
91 <span><a href="{{ book.mobi_file.url}}">MOBI</a> {% trans "for Kindle" %}</span>
93 {% if book.txt_file %}
94 <span><a href="{{ book.txt_file.url}}">TXT</a> {% trans "for advanced usage" %}</span>
98 <li class="book-box-audiobook">
99 {% if related.media.mp3 or related.media.ogg %}
100 <a href="{% url book_player book.slug %}" class="open-player mono downarrow">{% trans "Listen" %}</a>
104 {% block book-box-extra-info %}{% endblock %}
105 {% block box-append %}
107 {% block right-column %}
109 <div class="clearboth"></div>