Remove old version.
[wolnelektury.git] / src / catalogue / templates / catalogue / book_short.html
index 59debf4..133ed0c 100644 (file)
@@ -1,5 +1,6 @@
 {% spaceless %}
   {% load i18n %}
+  {% load thumbnail %}
   {% load cache %}
   {% load catalogue_tags %}
   {% load book_shelf_tags from social_tags %}
   <div class="{% block box-class %}book-box{% if audiobooks %} audiobook-box{% endif %}{% endblock %}">
     <div class="book-box-inner">
 
-    {% block book-box-pre %}
-      {% include "catalogue/snippets/like_button.html" %}
-    {% endblock %}
-
     {% with book.tags_by_category as tags %}
     <div class="book-left-column">
       <div class="book-box-body">
@@ -21,9 +18,9 @@
         {% endblock %}
 
         <div class="cover-area">
-          {% if book.cover_thumb %}
-            <a href="{{ book.get_absolute_url }}">
-              <img src="{{ book.cover_thumb.url }}" alt="Cover" class="cover" />
+          {% if book.cover_clean %}
+            <a href="{% block cover-link %}{{ book.get_absolute_url }}{% endblock %}">
+              <img src="{% thumbnail book.cover_clean '139x193' as th %}{{ th.url }}{% endthumbnail %}" alt="Cover" class="cover" />
             </a>
           {% endif %}
           {% block cover-area-extra %}{% endblock %}
         <ul class="book-box-tools">
           <li class="book-box-read">
             {% if book.html_file %}
+           <div>{% content_warning book %}</div>
               <a href="{% url 'book_text' book.slug %}" class="downarrow">{% trans "Read online" %}</a>
             {% endif %}
             {% if book.print_on_demand %}
             {% endif %}
           </li>
           <li class="book-box-download">
-            <a class="downarrow">{% trans "Download" %}:</a>
             <div class="book-box-formats">
+              {% trans "Download an ebook" %}:<br>
               {% if book.pdf_file %}
-                <span><a href="{{ book.pdf_url}}">PDF</a></span>
+                <a href="{{ book.pdf_url}}">PDF</a>
               {% endif %}
               {% if book.epub_file %}
-                <span><a href="{{ book.epub_url}}">EPUB</a></span>
+                <a href="{{ book.epub_url}}">EPUB</a>
               {% endif %}
               {% if book.mobi_file %}
-                <span><a href="{{ book.mobi_url}}">MOBI</a></span>
+                <a href="{{ book.mobi_url}}">MOBI</a>
+              {% endif %}
+              {% if  book.fb2_file %}
+                <a href="{{ book.fb2_url}}">FB2</a>
               {% endif %}
-              {% if book.has_audio %}
-                <span><a href="{% url 'download_zip_mp3' book.slug %}">MP3</a></span>
+              {% if  book.txt_file %}
+                <a href="{{ book.txt_url}}">TXT</a>
               {% endif %}
-              <a class="read-more-show hide" href="#">{% trans "more" %}</a>
-              <span class="read-more-content">
-                {% if  book.fb2_file %}
-                  <span><a href="{{ book.fb2_url}}">FB2</a></span>
-                {% endif %}
-                {% if  book.txt_file %}
-                  <span><a href="{{ book.txt_url}}">TXT</a></span>
-                {% endif %}
-                {% download_audio book mp3=False %}
-                <br>
+            </div>
+            {% if book.has_mp3_file %}
+              <div class="book-box-formats">
+                {% trans "Download audiobook" %}:<br>
+                {% download_audio book %}
+              </div>
+            {% endif %}
+            <div class="book-box-formats">
                 {% custom_pdf_link_li book %}
-                <a class="read-more-hide hide" href="#">{% trans "less" %}</a>
-              </span>
             </div>
           </li>
         </ul>
       {% else %}
-        <p class="book-box-tools">{% trans "For now this work is only available for our subscribers." %}
-          <a href="/towarzystwo/">Dołącz do Towarzystwa Przyjaciół Wolnych Lektur</a>
-       </p>
+        {% block preview-info %}
+          <p class="book-box-tools book-box-tools-warn">
+            {% trans "For now this work is only available for our subscribers." %}
+           <a href="{% url 'club_join' %}">Wspieraj Wolne Lektury</a>
+         </p>
+          <div>{% content_warning book %}</div>
+        {% endblock %}
       {% endif %}
       {% endcache %}
       {% block book-box-extra-info %}{% endblock %}
     </div>
     {% endwith %}
 
-    {% block right-column %}
-      {% if audiobooks %}{% if book|status:request.user != 'closed' %}
-        <div class="book-right-column">
-          {% include 'catalogue/snippets/jplayer.html' %}
-        </div>
-      {% endif %}{% endif %}
-    {% endblock %}
     {% if book.abstract %}
       <div class="abstract more-expand">
         {{ book.abstract|safe }}