rearrangements: new core app, templates in apps, split settings;
[wolnelektury.git] / wolnelektury / templates / catalogue / book_list.html
diff --git a/wolnelektury/templates/catalogue/book_list.html b/wolnelektury/templates/catalogue/book_list.html
deleted file mode 100644 (file)
index 281e5e7..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-{% extends "base.html" %}
-{% load i18n %}
-{% load catalogue_tags chunks %}
-
-{% block bodyid %}book-a-list{% endblock %}
-
-{% block title %}{% trans "Alphabetical listing of works on" %}Alfabetyczny spis utworów w WolneLektury.pl{% endblock %}
-
-{% block body %}
-    <h1>Alfabetyczny spis utworów</h1>
-    <form action="{% url search %}" method="GET" accept-charset="utf-8" id="search-form">
-        <p>{{ form.q }} <input type="submit" value="{% trans "Search" %}" /> <strong>{% trans "or" %}</strong> <a href="{% url main_page %}">{% trans "return to main page" %}</a></p>
-    </form>
-    
-    <div id="book-list">
-        {% for first_letter, group in books_by_first_letter.items %}
-        <div class="group">
-            <h2>{{ first_letter }}</h2>
-            <ol>
-            {% for book in group %}
-                <li><a href="{{ book.get_absolute_url }}">{{ book.title }}</a></li>
-            {% endfor %}
-            </ol>
-        </div>
-        {% endfor %}    
-    </div>
-{% endblock %}
\ No newline at end of file