Another cover fix.
[wolnelektury.git] / apps / catalogue / templates / catalogue / book_mini_box.html
index 731a8d3..49257b1 100755 (executable)
@@ -1,24 +1,23 @@
-{% load thumbnail %}
 <div class="book-mini-box">
+    <div class="book-mini-box-inner">
+    {% if with_link %}
     <a href="{{ book.get_absolute_url }}">
-        {% if book.cover %}
-            <img src="
-                {% thumbnail book.cover "139x193" as thumb %}
-                    {{ thumb.url }}
-                {% empty %}
-                    {{ book.cover.url }}
-                {% endthumbnail %}
-            " alt="Cover" class="cover" />
+    {% endif %}
+        {% if book.cover_thumb %}
+            <img src="{{ book.cover_thumb.url }}"
+                alt="{{ author_str }} – {{ book.title }}" class="cover" />
+        {% endif %}
+        {% if show_lang %}
+            <span class="language" title="{{ book.language_name }}">{{ book.language_code }}</span>
         {% endif %}
         <div class="desc">
-            <span class="mono author">
-                {% for name, url in related.tags.author %}
-                    {{ name }}{% if not forloop.last %}, {% endif %}
-                {% endfor %}
-            </span>
+            <span class="mono author">{{ author_str }}</span>
             <span class="title">{{ book.title }}</span>
         </div>
+    {% if with_link %}
     </a>
+    {% endif %}
+    </div>
 </div>