rearrangements: new core app, templates in apps, split settings;
[wolnelektury.git] / wolnelektury / templates / catalogue / book_short.html
diff --git a/wolnelektury/templates/catalogue/book_short.html b/wolnelektury/templates/catalogue/book_short.html
deleted file mode 100644 (file)
index 7f26237..0000000
+++ /dev/null
@@ -1,83 +0,0 @@
-{% load i18n %}
-{% load thumbnail %}
-<div class="{% block box-class %}book-box{% endblock %}">
-<div class="book-box-inner">
-    <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="Cover" />
-        {% endif %}
-    </a>
-    {% block right-column %}
-    {% endblock %}
-    <div class="book-box-body">
-        <div class="book-box-head">
-            <div class="mono author">
-            {% for author in tags.author %}
-                {{ author }}
-            {% endfor %}
-            </div>
-            <div class="title">{{ book.title }}</div>
-        </div>
-        <div class="tags">
-            {% spaceless %}
-
-            <span class="mono">{% trans "Epoch" %}:</span>&nbsp;<span class="book-box-tag">
-                {% for tag in tags.epoch %}
-                    <a href="{{ tag.get_absolute_url }}">{{ tag.name }} </a>
-                {% endfor %}
-            </span>
-
-            <span class="mono">{% trans "Kind" %}:</span>&nbsp;<span class="book-box-tag">
-                {% for tag in tags.kind %}
-                    <a href="{{ tag.get_absolute_url }}">{{ tag.name }} </a>
-                {% endfor %}
-            </span>
-
-            <span class="mono">{% trans "Genre" %}:</span>&nbsp;<span class="book-box-tag">
-                {% for tag in tags.genre %}
-                    <a href="{{ tag.get_absolute_url }}">{{ tag.name }} </a>
-                {% endfor %}
-            </span>
-
-            {% endspaceless %}
-        </div>
-    </div>
-    <ul class="book-box-tools">
-        <li class="book-box-read">
-        {% if book.html_file %}
-            <a href="{% url book_text book.slug %}" class="mono downarrow">{% trans "Read online" %}</a>
-        {% endif %}
-        </li>
-        <li class="book-box-download">
-            <a class="mono downarrow">{% trans "Download" %}</a>
-            <div class="book-box-formats mono">
-             {% if formats.pdf %}
-             <span><a href="{{formats.pdf.url}}">PDF</a> do wydruku</span>
-             {% endif %}
-             {% if formats.epub %}
-             <span><a href="{{formats.epub.url}}">EPUB</a> na czytnik</span>
-             {% endif %}
-             {% if formats.mobi %}
-             <span><a href="{{formats.mobi.url}}">MOBI</a> na Kindle</span>
-             {% endif %}
-             {% if formats.txt %}
-             <span><a href="{{formats.txt.url}}">TXT</a> do zadaƄ specjalnych</span>
-             {% endif %}
-            </div>
-        </li>
-        <li class="book-box-audiobook">
-        {% if book.has_mp3_file %}
-            <a href="{% url book_player book.slug %}" class="open-player mono downarrow">{% trans "Listen" %}</a>
-        {% endif %}
-        </li>
-    </ul>
-    {% block box-append %}
-    {% endblock %}
-</div>
-</div>