rearrangements: new core app, templates in apps, split settings;
[wolnelektury.git] / wolnelektury / templates / catalogue / book_mini_box.html
diff --git a/wolnelektury/templates/catalogue/book_mini_box.html b/wolnelektury/templates/catalogue/book_mini_box.html
deleted file mode 100755 (executable)
index 6728be8..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-{% load i18n %}
-{% load thumbnail %}
-<div class="book-mini-box">
-    <a href="{{ book.get_absolute_url }}">
-        {% if book.cover %}
-            <img src="
-                {% thumbnail book.cover "216x288" as thumb %}
-                    {{ thumb.url }}
-                {% empty %}
-                    {{ book.cover.url }}
-                {% endthumbnail %}
-            " alt="{% trans "Book cover" %}" />
-        {% endif %}
-        {% for author in authors %}
-            <div class="mono author">{{ author }}</div>
-            {{ book.title }}
-        {% endfor %}
-    </a>
-</div>
-
-