4   {% load catalogue_tags %}
 
   5   {% load book_shelf_tags from social_tags %}
 
   8   {% with ga=book.get_audiobooks %}
 
   9   {% with audiobooks=ga.0 %}
 
  10   <div class="{% block box-class %}book-box{% if audiobooks %} audiobook-box{% endif %}{% endblock %}">
 
  11     <div class="book-box-inner">
 
  13     {% block book-box-pre %}
 
  14       {% include "catalogue/snippets/like_button.html" %}
 
  17     {% with book.tags_by_category as tags %}
 
  18     <div class="book-left-column">
 
  19       <div class="book-box-body">
 
  20         {% block book-box-body-pre %}
 
  23         <div class="cover-area">
 
  24           {% if book.cover_thumb %}
 
  25             <a href="{{ book.get_absolute_url }}">
 
  26               <img src="{{ book.cover_thumb.url }}" alt="Cover" class="cover" />
 
  29           {% block cover-area-extra %}{% endblock %}
 
  32         {% get_current_language as LANGUAGE_CODE %}
 
  33         {% cache 86400 book_box_head_tags book.pk LANGUAGE_CODE %}
 
  34         <div class="book-box-head">
 
  36             {% for tag in tags.author %}
 
  37               <a href="{{ tag.get_absolute_url }}">{{ tag.name }}</a>{% if not forloop.last %},
 
  38             {% endif %}{% endfor %}{% for parent in book.parents %},
 
  39               <a href="{{ parent.get_absolute_url }}">{{ parent.title }}</a>{% endfor %}
 
  42             <a href="{{ book.get_absolute_url }}">{{ book.title }}</a>
 
  44           {% if book.translator %}
 
  46                   tłum. {{ book.translator }}
 
  52           <span class="category">
 
  53           <span class="mono"> {% trans "Epoch" %}:</span> <span class="book-box-tag">
 
  54             {% for tag in tags.epoch %}
 
  55               <a href="{{ tag.get_absolute_url }}">{{ tag.name }}</a>
 
  56               {% if not forloop.last %}<span>, </span>{% endif %}
 
  60           <span class="category">
 
  61           <span class="mono"> {% trans "Kind" %}:</span> <span class="book-box-tag">
 
  62             {% for tag in tags.kind %}
 
  63               <a href="{{ tag.get_absolute_url }}">{{ tag.name }}</a>
 
  64               {% if not forloop.last %}<span>, </span>{% endif %}
 
  68           <span class="category">
 
  69           <span class="mono"> {% trans "Genre" %}:</span> <span class="book-box-tag">
 
  70             {% for tag in tags.genre %}
 
  71               <a href="{{ tag.get_absolute_url }}">{{ tag.name }}</a>
 
  72               {% if not forloop.last %}<span>, </span>{% endif %}
 
  76           {% with extra_info=book.get_extra_info_json %}
 
  77             {% if extra_info.location %}
 
  78               <span class="category">
 
  79               <span class="mono"> {% trans "Region" %}:</span> <span class="book-box-tag">
 
  80                   {{ extra_info.location }}
 
  85           {% if book.is_foreign %}
 
  86             <span class="category">
 
  87               <span class="mono"> {% trans "Language" %}:</span> <span class="book-box-tag">
 
  88                 <a>{{ book.language_name }}</a>
 
  93           {% with stage_note=book.stage_note %}
 
  96             <span class="category">
 
  97               <a{% if stage_note.1 %} href="{{ stage_note.1 }}"{% endif %}>{{ stage_note.0 }}</a>
 
 104       {% book_shelf_tags book.pk %}
 
 106       {% cache 86400 book_box_tools book.pk book|status:request.user LANGUAGE_CODE %}
 
 107       {% if book|status:request.user != 'closed' %}
 
 108         <ul class="book-box-tools">
 
 109           <li class="book-box-read">
 
 110             {% if book.html_file %}
 
 111               <a href="{% url 'book_text' book.slug %}" class="downarrow">{% trans "Read online" %}</a>
 
 113             {% if book.print_on_demand %}
 
 114               <a href="{{ book.ridero_link }}" class="downarrow print tlite-tooltip" title="{% trans "Cena książki w druku cyfrowym jest zależna od liczby stron.<br>Przed zakupem upewnij się, że cena druku na żądanie jest dla Ciebie odpowiednia.<br>Wszystkie nasze zasoby w wersji elektronicznej są zawsze dostępne bezpłatnie." %}">{% trans "Print on demand –" %}
 
 115                   <img src="{% static 'img/ridero.png' %}" style="height: 0.8em;"/></a>
 
 118           <li class="book-box-download">
 
 119             <a class="downarrow">{% trans "Download" %}:</a>
 
 120             <div class="book-box-formats">
 
 121               {% if book.pdf_file %}
 
 122                 <span><a href="{{ book.pdf_url}}">PDF</a></span>
 
 124               {% if book.epub_file %}
 
 125                 <span><a href="{{ book.epub_url}}">EPUB</a></span>
 
 127               {% if book.mobi_file %}
 
 128                 <span><a href="{{ book.mobi_url}}">MOBI</a></span>
 
 130               {% if book.has_audio %}
 
 131                 <span><a href="{% url 'download_zip_mp3' book.slug %}">MP3</a></span>
 
 133               <a class="read-more-show hide" href="#">{% trans "more" %}</a>
 
 134               <span class="read-more-content">
 
 135                 {% if  book.fb2_file %}
 
 136                   <span><a href="{{ book.fb2_url}}">FB2</a></span>
 
 138                 {% if  book.txt_file %}
 
 139                   <span><a href="{{ book.txt_url}}">TXT</a></span>
 
 141                 {% download_audio book mp3=False %}
 
 143                 {% custom_pdf_link_li book %}
 
 144                 <a class="read-more-hide hide" href="#">{% trans "less" %}</a>
 
 150         <p class="book-box-tools book-box-tools-warn">{% trans "For now this work is only available for our subscribers." %}
 
 151            <a href="/towarzystwo/">Dołącz do Towarzystwa Przyjaciół Wolnych Lektur</a>
 
 155       {% block book-box-extra-info %}{% endblock %}
 
 156       {% block box-append %}{% endblock %}
 
 160     {% block right-column %}
 
 161       {% if audiobooks %}{% if book|status:request.user != 'closed' %}
 
 162         <div class="book-right-column">
 
 163           {% include 'catalogue/snippets/jplayer.html' %}
 
 165       {% endif %}{% endif %}
 
 167     {% if book.abstract %}
 
 168       <div class="abstract more-expand">
 
 169         {{ book.abstract|safe }}
 
 173     <div class="clearboth"></div>