Changed rendering of fragment lists.
[wolnelektury.git] / templates / catalogue / tagged_book_list.html
index 695a492..cca0e56 100644 (file)
 
 {% block body %}
     <h1>{% title_from_tags tags %}</h1>
-    <form action="." method="get" accept-charset="utf-8" id="search-form">
-        <ol>
-            {% for tag in tags %}
-            <li class="category"><a href="{% catalogue_url tag %}">{{ tag }}</a> | <a href="{% catalogue_url tags -tag %}">x</a></li>
-            {% endfor %}
-            <li>{{ form.q }} <input type="submit" value="Szukaj"/></li>
-        </ol>
-    </form>
+    {% breadcrumbs tags %}
     
     {% autopaginate object_list 10 %}
     <div id="books-list">
@@ -75,7 +68,7 @@
         {% endwith %}
         <ol>
         {% for book in object_list %}
-            <li>{% include "catalogue/_book.html" %}</li>
+            <li>{% book book %}</li>
         {% endfor %}
         </ol>
         {% paginate %}