reformat templates
[wolnelektury.git] / src / catalogue / templates / catalogue / search_multiple_hits.html
index 24a7a79..28e3985 100644 (file)
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "base/base.html" %}
 {% load i18n %}
 {% load pagination_tags %}
 {% load inline_tag_list from catalogue_tags %}
 {% block bodyid %}tagged-object-list{% endblock %}
 
 {% block body %}
-    {% if did_you_mean %}
-      <span class="did_you_mean">{% trans "Did you mean" %} <a href="{% url 'search' %}?q={{did_you_mean|urlencode}}">{{did_you_mean|lower}}</a>?</span>
+  {% if did_you_mean %}
+    <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 -->
+  <div class="inline-tag-lists top-tag-list">
+    {% if tags.author %}
+      <div>
+        <h2>{% trans "Authors" %}:</h2>
+        {% for tag in tags.author %}
+          <a class="tag-box" href="{{ tag.get_absolute_url }}">
+            {% ssi_include "catalogue_tag_box" pk=tag.pk %}
+          </a>
+        {% endfor %}
+      </div>
     {% endif %}
-    <!-- tu pójdą trafienia w tagi: Autorzy - z description oraz motywy i rodzaje -->
-      <div class="inline-tag-lists top-tag-list">
-       {% if tags.author %}
-       <div>
-         <h2>{% trans "Authors" %}:</h2>
-      {% for tag in tags.author %}
-      <a class="tag-box" href="{{ tag.get_absolute_url }}">
-      {% ssi_include "catalogue_tag_box" pk=tag.pk %}
-      </a>
-      {% endfor %}
-       </div>
-       {% endif %}
-       {% if tags.kind %}
-       <div>
-         <h2>{% trans "Kinds" %}:</h2>
-      {% for tag in tags.kind %}
-      <a class="tag-box" href="{{ tag.get_absolute_url }}">
-      {% ssi_include "catalogue_tag_box" pk=tag.pk %}
-      </a>
-      {% endfor %}
-       </div>
-       {% endif %}
-       {% if tags.genre %}
-       <div>
-         <h2>{% trans "Genres" %}:</h2>
-      {% for tag in tags.genre %}
-      <a class="tag-box" href="{{ tag.get_absolute_url }}">
-      {% ssi_include "catalogue_tag_box" pk=tag.pk %}
-      </a>
-      {% endfor %}
-       </div>
-       {% endif %}
-       {% if tags.epoch %}
-       <div class="inline-tag-list">
-         <h2>{% trans "Epochs" %}:</h2>
-      {% for tag in tags.epoch %}
-      <a class="tag-box" href="{{ tag.get_absolute_url }}">
-      {% ssi_include "catalogue_tag_box" pk=tag.pk %}
-      </a>
-      {% endfor %}
-       </div>
-       {% endif %}
+    {% if tags.kind %}
+      <div>
+        <h2>{% trans "Kinds" %}:</h2>
+        {% for tag in tags.kind %}
+          <a class="tag-box" href="{{ tag.get_absolute_url }}">
+            {% ssi_include "catalogue_tag_box" pk=tag.pk %}
+          </a>
+        {% endfor %}
+      </div>
+    {% endif %}
+    {% if tags.genre %}
+      <div>
+        <h2>{% trans "Genres" %}:</h2>
+        {% for tag in tags.genre %}
+          <a class="tag-box" href="{{ tag.get_absolute_url }}">
+            {% ssi_include "catalogue_tag_box" pk=tag.pk %}
+          </a>
+        {% endfor %}
       </div>
+    {% endif %}
+    {% if tags.epoch %}
+      <div class="inline-tag-list">
+        <h2>{% trans "Epochs" %}:</h2>
+        {% for tag in tags.epoch %}
+          <a class="tag-box" href="{{ tag.get_absolute_url }}">
+            {% ssi_include "catalogue_tag_box" pk=tag.pk %}
+          </a>
+        {% endfor %}
+      </div>
+    {% endif %}
+  </div>
 
-    {% if results.title %}
+  {% if results.title %}
     <div class="book-list-header">
       <div class="book-box-inner">
-      <p>{% trans "Results by title" %}</p>
+        <p>{% trans "Results by title" %}</p>
       </div>
     </div>
     <div>
       <ol class="work-list">
-       {% for result in results.title %}<li class="Book-item">
-         {% ssi_include 'catalogue_book_short' pk=result.book.pk %}
-       </li>{% endfor %}
+        {% for result in results.title %}
+          <li class="Book-item">
+            {% ssi_include 'catalogue_book_short' pk=result.book.pk %}
+          </li>
+        {% endfor %}
       </ol>
     </div>
-    {% endif %}
+  {% endif %}
 
-    {% if results.author %}
+  {% if results.author %}
     <div class="book-list-header">
       <div class="book-box-inner">
-       <p>{% trans "Results by authors" %}</p>
+        <p>{% trans "Results by authors" %}</p>
       </div>
     </div>
     <div>
       <ol class="work-list">
-       {% for author in results.author %}<li class="Book-item">{% ssi_include 'catalogue_book_short' pk=author.book.pk %}</li>{% endfor %}
+        {% for author in results.author %}
+          <li class="Book-item">{% ssi_include 'catalogue_book_short' pk=author.book.pk %}</li>
+        {% endfor %}
       </ol>
     </div>
-    {% endif %}
+  {% endif %}
 
-    {% if results.translator %}
+  {% if results.translator %}
     <div class="book-list-header">
       <div class="book-box-inner">
-       <p>{% trans "Results by translators" %}</p>
+        <p>{% trans "Results by translators" %}</p>
       </div>
     </div>
     <div>
       <ol class="work-list">
-       {% for translator in results.translator %}<li class="Book-item">{% ssi_include 'catalogue_book_short' pk=translator.book.pk %}</li>{% endfor %}
+        {% for translator in results.translator %}
+          <li class="Book-item">{% ssi_include 'catalogue_book_short' pk=translator.book.pk %}</li>
+        {% endfor %}
       </ol>
     </div>
-    {% endif %}
+  {% endif %}
 
-    {% if results.content %}
-    <div class="book-list-header">
-      <div class="book-box-inner">
+  {% if results.content %}
+  <div class="book-list-header">
+    <div class="book-box-inner">
       <p>{% trans "Results in text" %}</p>
-      </div>
     </div>
-    <div>
-      <ol class="work-list">
-       {% for result in results.content %}
-       <li class="Book-item">
+  </div>
+  <div>
+    <ol class="work-list">
+      {% for result in results.content %}
+        <li class="Book-item">
           {% book_searched result %}
-       </li>
-       {% endfor %}
-      </ol>
-    </div>
-    {% endif %}
+        </li>
+      {% endfor %}
+    </ol>
+  </div>
+  {% endif %}
 
-    {% if results.other %}
+  {% if results.other %}
     <div class="book-list-header">
       <div class="book-box-inner">
-       <p>{% trans "Other results" %}</p>
+        <p>{% trans "Other results" %}</p>
       </div>
     </div>
     <div>
       <ol class="work-list">
-       {% for result in results.other %}
-       <li class="Book-item">
-          {% book_searched result %}
-       </li>
-       {% endfor %}
+        {% for result in results.other %}
+          <li class="Book-item">
+            {% book_searched result %}
+          </li>
+        {% endfor %}
       </ol>
     </div>
-    {% endif %}
-
-
-
+  {% endif %}
 {% endblock %}