Remove old version.
[wolnelektury.git] / src / catalogue / templates / catalogue / book_short.html
index 6f88cf0..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 %}
+          {% if book.cover_clean %}
             <a href="{% block cover-link %}{{ book.get_absolute_url }}{% endblock %}">
-              <img src="{{ book.cover_thumb.url }}" alt="Cover" class="cover" />
+              <img src="{% thumbnail book.cover_clean '139x193' as th %}{{ th.url }}{% endthumbnail %}" alt="Cover" class="cover" />
             </a>
           {% endif %}
           {% block cover-area-extra %}{% 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 }}