Moved catalogue, chunks, compress, newtagging and pagination applications to apps...
[wolnelektury.git] / templates / catalogue / main_page.html
index 8fe16d1..0c58ada 100644 (file)
@@ -1,5 +1,5 @@
 {% extends "base.html" %}
-{% load catalogue_tags chunks %}
+{% load catalogue_tags chunks cache %}
 
 {% block bodyid %}main-page{% endblock %}
 
         {% chunk "site-description" %}
     </div>
     <div class="clearboth"></div>
-    <form action="." method="get" accept-charset="utf-8" id="search-form">
-        <p>{{ form.q }} <input type="submit" value="Szukaj" /> <strong>lub</strong> <a href="{% url catalogue.views.book_list %}">zobacz spis utworów</a> w naszym zbiorze</p>
+    <form action="{% url search %}" method="get" accept-charset="utf-8" id="search-form">
+        <p>{{ form.q }} {{ form.tags }} <input type="submit" value="Szukaj" /> <strong>lub</strong> <a href="{% url catalogue.views.book_list %}">zobacz spis utworów</a> w naszym zbiorze</p>
     </form>
     
     <div id="tags-list">
         <div id="categories-list">
             {% if categories.set %}
-                <h2>Zestawy</h2>
+                <h2>Półki</h2>
                 <ul>
                 {% for set in categories.set %}
                     <li><a href="{% catalogue_url set %}">{{ set }}&nbsp;({{ set.count }})</a></li>
@@ -72,7 +72,7 @@
             {% if categories.theme %}
                 <h2>Motywy</h2>
                 <ul>
-                {% for theme in categories.theme %}
+                {% for theme in fragment_tags %}
                     <li><a href="{% catalogue_url theme %}">{{ theme }}&nbsp;({{ theme.count }})</a></li>
                 {% endfor %}
                 </ul>                
@@ -83,6 +83,8 @@
     
     <div id="latest-blog-posts">
         <h2>Aktualności z naszego bloga</h2>
+        {% cache 1800 latest-blog-posts %}
         {% latest_blog_posts "http://wolnepodreczniki.pl/feed/?s=Wolne%20Lektury" %}
+        {% endcache %}
     </div>
 {% endblock %}