pretty cite on main
[wolnelektury.git] / wolnelektury / templates / catalogue / book_short.html
1 {% load i18n %}
2 {% load catalogue_tags social_tags %}
3 {% load thumbnail %}
4 <div class="{% block box-class %}book-box{% endblock %}">
5 <div class="book-box-inner" style="position: relative;">
6
7
8     <a href="{{ main_link }}">
9         {% if book.cover %}
10             <img src="
11                 {% thumbnail book.cover "139x193" as thumb %}
12                     {{ thumb.url }}
13                 {% empty %}
14                     {{ book.cover.url }}
15                 {% endthumbnail %}
16             " alt="Cover" />
17         {% endif %}
18     </a>
19     {% block right-column %}
20     {% endblock %}
21     <div class="book-box-body">
22
23
24 <div class="star {% if not request.user|likes:book %}un{% endif %}like">
25     <div class="if-like" >
26         <a id="social-book-sets-{{ book.slug }}" data-callback='social-book-sets' class='ajaxable' href='{% url social_book_sets book.slug %}'>
27             ★
28         </a>
29     </div>
30     <div class="if-unlike">
31         <form id="social-like-book-{{ book.slug }}" data-callback='social-like-book' method='post' class='ajax-form' action='{% url social_like_book book.slug %}'>
32             <button type='submit'>☆</button>
33         </form>
34     </div>
35 </div>
36
37
38         <div class="book-box-head">
39             <div class="mono author">
40                 {% for name, slug in related.tags.author %}
41                     <a href="{% tag_url 'author' slug %}">{{ name }}</a>{% if not forloop.last %},
42                 {% endif %}{% endfor %}{% for title, slug in related.parents %},
43                     <a href="{% url book_detail slug %}">{{ title }}</a>{% endfor %}
44             </div>
45             <div class="title"><a href="{{ main_link }}">{{ book.title }}</a></div>
46         </div>
47         <div class="tags">
48             {% spaceless %}
49
50             <span class="mono">{% trans "Epoch" %}:</span>&nbsp;<span class="book-box-tag">
51                 {% for name, slug in related.tags.epoch %}
52                     <a href="{% tag_url 'epoch' slug %}">{{ name }} </a>
53                 {% endfor %}
54             </span>
55
56             <span class="mono">{% trans "Kind" %}:</span>&nbsp;<span class="book-box-tag">
57                 {% for name, slug in related.tags.kind %}
58                     <a href="{% tag_url 'kind' slug %}">{{ name }} </a>
59                 {% endfor %}
60             </span>
61
62             <span class="mono">{% trans "Genre" %}:</span>&nbsp;<span class="book-box-tag">
63                 {% for name, slug in related.tags.genre %}
64                     <a href="{% tag_url 'genre' slug %}">{{ name }} </a>
65                 {% endfor %}
66             </span>
67
68             {% endspaceless %}
69
70             {% shelf_tags book %}
71         </div>
72     </div>
73
74     <ul class="book-box-tools">
75         <li class="book-box-read">
76         {% if book.html_file %}
77             <a href="{% url book_text book.slug %}" class="mono downarrow">{% trans "Read online" %}</a>
78         {% endif %}
79         </li>
80         <li class="book-box-download">
81             <a class="mono downarrow">{% trans "Download" %}</a>
82             <div class="book-box-formats mono">
83               {% if book.pdf_file %}
84               <span><a href="{{ book.pdf_file.url}}">PDF</a> do wydruku</span>
85               {% endif %}
86               {% if  book.epub_file %}
87               <span><a href="{{ book.epub_file.url}}">EPUB</a> na czytnik</span>
88               {% endif %}
89               {% if  book.mobi_file %}
90               <span><a href="{{ book.mobi_file.url}}">MOBI</a> na Kindle</span>
91               {% endif %}
92               {% if  book.txt_file %}
93               <span><a href="{{ book.txt_file.url}}">TXT</a> do zadań specjalnych</span>
94               {% endif %}
95             </div>
96         </li>
97         <li class="book-box-audiobook">
98         {% if related.media.mp3 or related.media.ogg %}
99             <a href="{% url book_player book.slug %}" class="open-player mono downarrow">{% trans "Listen" %}</a>
100         {% endif %}
101         </li>
102     </ul>
103     {% block book-box-extra-info %}{% endblock %}
104     {% block box-append %}
105     {% endblock %}
106     <div class="clearboth"></div>
107 </div>
108 </div>