X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/bcd038fcea6b45b29ff3831b31f758dcec6b4157..e353262951cc8b8d3f1a52b896a825bad743a5a7:/wolnelektury/templates/catalogue/search_multiple_hits.html

diff --git a/wolnelektury/templates/catalogue/search_multiple_hits.html b/wolnelektury/templates/catalogue/search_multiple_hits.html
index 31e67a8c1..efe6d7915 100644
--- a/wolnelektury/templates/catalogue/search_multiple_hits.html
+++ b/wolnelektury/templates/catalogue/search_multiple_hits.html
@@ -8,11 +8,10 @@
 
 {% block body %}
     {% if did_you_mean %}
-      <span class="did_you_mean">{% trans "Dod you mean" %} <a href="{% url search %}?q={{did_you_mean|urlencode}}">{{did_you_mean|lower}}</a></b>?</span>
+      <span class="did_you_mean">{% trans "Did you mean" %} <a href="{% url search %}?q={{did_you_mean|urlencode}}">{{did_you_mean|lower}}</a>?</span>
     {% endif %}
     <!-- tu pójdą trafienia w tagi: Autorzy - z description oraz motywy i rodzaje (z book_count) -->
 
-
     {% if results.author %}
     <div class="book-list-header">
       <div class="book-box-inner">
@@ -22,7 +21,7 @@
     <div>
       <ol class="work-list">
 	{% for author in results.author %}
-	<li class="work-item">
+	<li class="Book-item">
 	  {% book_short author.book %}
 	</li>
 	{% endfor %}
@@ -39,7 +38,7 @@
     <div>
       <ol class="work-list">
 	{% for result in results.title %}
-	<li class="work-item">
+	<li class="Book-item">
 	  {% book_short result.book %}
 	</li>
 	{% endfor %}
@@ -48,7 +47,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>
@@ -56,18 +54,16 @@
     </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>
@@ -76,16 +72,14 @@
     <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 %}
 
 
 
-
 {% endblock %}