display changes, mostly in book boxes
[wolnelektury.git] / wolnelektury / templates / catalogue / search_multiple_hits.html
index 0a7dc1c..6739645 100644 (file)
@@ -1,6 +1,6 @@
 {% extends "base.html" %}
 {% load i18n %}
-{% load search_tags pagination_tags %}
+{% load catalogue_tags search_tags pagination_tags %}
 
 {% block titleextra %}{% trans "Search" %}{% endblock %}
 
@@ -12,7 +12,7 @@
     {% endif %}
     <!-- tu pójdą trafienia w tagi: Autorzy - z description oraz motywy i rodzaje (z book_count) -->
 
-
+    {% spaceless %}
     {% if results.author %}
     <div class="book-list-header">
       <div class="book-box-inner">
@@ -22,8 +22,8 @@
     <div>
       <ol class="work-list">
        {% for author in results.author %}
-       <li class="work-item">
-         {{author.book.short_html}}
+       <li class="Book-item">
+         {% book_short author.book %}
        </li>
        {% endfor %}
       </ol>
@@ -39,8 +39,8 @@
     <div>
       <ol class="work-list">
        {% for result in results.title %}
-       <li class="work-item">
-         {{result.book.short_html}}
+       <li class="Book-item">
+         {% book_short result.book %}
        </li>
        {% endfor %}
       </ol>
@@ -48,7 +48,6 @@
     {% endif %}
 
     {% if results.content %}
-    {% for result in results.content %}
     <div class="book-list-header">
       <div class="book-box-inner">
       <p>{% trans "Results in text" %}</p>
     </div>
     <div>
       <ol class="work-list">
-       {% for result in results.title %}
-       <li class="work-item">
+       {% for result in results.content %}
+       <li class="Book-item">
           {% book_searched result %}
        </li>
        {% endfor %}
       </ol>
     </div>
-    {% endfor %}
     {% endif %}
 
     {% if results.other %}
-    {% for result in results.other %}
     <div class="book-list-header">
       <div class="book-box-inner">
        <p>{% trans "Other results" %}</p>
     <div>
       <ol class="work-list">
        {% for result in results.other %}
-       <li class="work-item">
+       <li class="Book-item">
           {% book_searched result %}
        </li>
        {% endfor %}
       </ol>
     </div>
-    {% endfor %}
     {% endif %}
-
+    {% endspaceless %}