Changed rendering of fragment lists.
[wolnelektury.git] / templates / catalogue / tagged_book_list.html
index e043101..cca0e56 100644 (file)
@@ -1,5 +1,5 @@
 {% extends "base.html" %}
-{% load catalogue pagination_tags %}
+{% load catalogue_tags pagination_tags %}
 
 {% block title %}{% title_from_tags tags %} w WolneLektury.pl{% endblock %}
 
@@ -8,8 +8,6 @@
 {% block extrahead %}
     <script type="text/javascript">
         $(function() {            
-            $('#id_q').labelify({labelledClass: 'blur'});
-            
             // $('#tags-list ul').addClass('dontsplit');
             // $('#tags-list').columnize({width: 180});
             
 
 {% 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 books 10 %}
+    {% autopaginate object_list 10 %}
     <div id="books-list">
         {% with tags|last as last_tag %}
         {% if last_tag.has_description %}
@@ -76,8 +67,8 @@
         {% endif %}
         {% endwith %}
         <ol>
-        {% for book in books %}
-            <li>{% include "catalogue/_book.html" %}</li>
+        {% for book in object_list %}
+            <li>{% book book %}</li>
         {% endfor %}
         </ol>
         {% paginate %}