Annoying fixes.
[wolnelektury.git] / src / catalogue / templates / catalogue / tagged_object_list.html
index 3df560a..285af0a 100644 (file)
-{% extends "base.html" %}
+{% extends "base/base.html" %}
 {% load i18n %}
 {% load catalogue_tags switch_tag social_tags %}
 {% load ssi_include from ssify %}
 
-{% block titleextra %}{% title_from_tags tags %}{% endblock %}
+{% block titleextra %}{% if tags %}{% title_from_tags tags %}{% elif list_type == 'gallery' %}{% trans "Gallery" %}{% elif list_type == 'audiobooks' %}{% trans "Audiobooks" %}{% else %}{% trans "Literature" %}{% endif %}{% endblock %}
 
-{% block bodyid %}tagged-object-list{% endblock %}
 
-{% block body %}
-<div class="left-column">
-  <div class="page-desc">
-    <h1>{% html_title_from_tags tags %}</h1>
+{% block extrahead %}
+{{ block.super }}
+{% if request.path == '/katalog/lektury/' or request.path == '/katalog/audiobooki/' %}
+{% include "hotjar.html" %}
+{% endif %}
+{% endblock %}
 
-    {% with tags|last as last_tag %}
-    {% if last_tag.has_description %}
-    <div id="description" class="normal-text">
-      <div id='description-long' style="display:none">{{ last_tag.description|safe }}</div>
-      <div id='description-short'>{{ last_tag.description|safe|truncatewords_html:40 }}</div>
-    </div>
-    {% endif %}
 
-    <div class="clearboth"></div>
-    <div class="inline-tag-lists">
-      {% if categories.author %}
-      <div>
-       <div class="mono inline-header">{% trans "Authors" %}:</div>
-       <div class="inline-body">
-         {% inline_tag_list categories.author tags %}
-        </div>
-      </div>
-      {% endif %}
-      {% if categories.kind %}
-      <div>
-       <div class="mono inline-header">{% trans "Kinds" %}:</div>
-       <div class="inline-body">
-         {% inline_tag_list categories.kind tags %}
-        </div>
-      </div>
-      {% endif %}
-      {% if categories.genre %}
-      <div>
-       <div class="mono inline-header">{% trans "Genres" %}:</div>
-       <div class="inline-body">
-         {% inline_tag_list categories.genre tags %}
-        </div>
-      </div>
-      {% endif %}
-      {% if categories.epoch %}
-      <div class="inline-tag-list">
-       <div class="mono inline-header">{% trans "Epochs" %}:</div>
-       <div class="inline-body">
-         {% inline_tag_list categories.epoch tags %}
-        </div>
-      </div>
-      {% endif %}
+{% block bodyid %}tagged-object-list{% endblock %}
 
-      {% if categories.theme %}
-      <div class="hidden-box-wrapper">
-       <p><a href="#" class="hidden-box-trigger theme-list-link mono">
-            {% trans "Motifs and themes" %}</a></p>
-       <div class="hidden-box">
-          {% tag_list categories.theme tags %}
-       </div>
-      </div>
+{% block body %}
+  <div class="tabbed-filter">
+    <h1>{% if tags %}{% html_title_from_tags tags %}{% endif %}</h1>
+
+    <div class="tabs">
+      <a class="tab white-box" data-id="authors">{% trans "Authors" %}</a>
+      <a class="tab white-box" data-id="epochs">{% trans "Epochs" %}</a>
+      <a class="tab white-box" data-id="genres">{% trans "Genres" %}</a>
+      <a class="tab white-box" data-id="kinds">{% trans "Kinds" %}</a>
+      {% if theme_is_set %}
+        <a class="tab white-box" data-id="themes">{% trans "Themes" %}</a>
       {% endif %}
     </div>
+  </div>
 
-    <div class="clearboth"></div>
-
-
-       {% if theme_is_set %}
-        <div class="see-also">
-            {% if last_tag.gazeta_link or last_tag.wiki_link %}
-            <h2 class='mono'>{% trans "See also" %}:</h2>
-            <ul>
-        {% if last_tag.culturepl_link %}
-        <li><a href="{{ last_tag.gazeta_link }}">
-               {% trans "in Culture.pl" %}
-        </a></li>
-        {% endif %}
-        {% if last_tag.gazeta_link %}
-        <li><a href="{{ last_tag.gazeta_link }}">
-               {% trans "in Lektury.Gazeta.pl" %}
-        </a></li>
-        {% endif %}
-        {% if last_tag.wiki_link %}
-        <li><a href="{{ last_tag.wiki_link }}">
-                       {% trans "in Wikipedia" %}
-        </a></li>
-        {% endif %}
-            </ul>
-            {% endif %}
-        </div>
-    {% endif %}
-
-
+  <div class="tabbed-filter-contents">
+    <div id="authors" class="white-box normal-text tab-content">
+      {% inline_tag_list categories.author tags 'author' list_type=list_type %}
     </div>
+    <div id="epochs" class="white-box normal-text tab-content">
+      {% inline_tag_list categories.epoch tags 'epoch' list_type=list_type %}
     </div>
-
-
-    <div class="right-column">
-        {% if theme_is_set %}
-            {% work_list object_list %}
+    <div id="genres" class="white-box normal-text tab-content">
+      {% inline_tag_list categories.genre tags 'genre' list_type=list_type %}
+    </div>
+    <div id="kinds" class="white-box normal-text tab-content">
+      {% inline_tag_list categories.kind tags 'kind' list_type=list_type %}
+    </div>
+    {% if theme_is_set %}
+      <div id="themes" class="white-box normal-text tab-content">
+        {% inline_tag_list categories.theme tags 'theme' list_type=list_type %}
+      </div>
+    {% endif %}
+  </div>
+
+  {% comment %}
+  {% if list_type == 'books' and not tags %}
+    <section>
+      <h1>{% trans "Recent publications" %}</h1>
+      {% for book in last_published %}
+        {% ssi_include 'catalogue_book_mini' pk=book.pk %}
+      {% endfor %}
+      <a class="more" href="{% url 'recent_list' %}">{% trans "More recent publications" %}</a>
+    </section>
+    <section>
+      <h1>{% trans "Most popular books" %}</h1>
+      {% for book in most_popular %}
+        {% ssi_include 'catalogue_book_mini' pk=book.pk %}
+      {% endfor %}
+    </section>
+  {% endif %}
+  {% endcomment %}
+
+  {% if theme_is_set %}
+    {% work_list object_list %}
+  {% else %}
+    <div id="books-list">
+      {% if object_list %}
+        {% work_list best %}
+        {% if tags %}
+          <h2>{% trans "All matching works" %}</h2>
         {% else %}
-
-        {% choose_cite tag_ids=tag_ids as cite_promo_pk %}
-        {% choose_fragment tag_ids=tag_ids unless=cite_promo_pk as fragment_promo_pk %}
-        {{ cite_promo_pk.if }}
-            {% ssi_include 'social_cite' pk=cite_promo_pk %}
-        {{ cite_promo_pk.endif }}
-        {{ fragment_promo_pk.if }}
-            {% ssi_include 'catalogue_fragment_promo' pk=fragment_promo_pk %}
-        {{ fragment_promo_pk.endif }}
-
-        <div class="see-also">
-            {% if last_tag.gazeta_link or last_tag.wiki_link %}
-            <h2 class='mono'>{% trans "See also" %}:</h2>
-            <ul>
-        {% if last_tag.gazeta_link %}
-        <li><a href="{{ last_tag.gazeta_link }}">
-            {% trans "in Lektury.Gazeta.pl" %}
-        </a></li>
+          {% if list_type == 'audiobooks' %}
+            <h2>{% trans "Listing of all audiobooks" %}</h2>
+          {% else %}
+            <h2>{% trans "All works" %}</h2>
+          {% endif %}
         {% endif %}
-        {% if last_tag.wiki_link %}
-        <li><a href="{{ last_tag.wiki_link }}">
-           {% trans "in Wikipedia" %}
-        </a></li>
+        {% plain_list object_list by_author=True list_type=list_type %}
+        {% if daisy %}
+          <h2>{% trans "DAISY files" %}</h2>
+          {% plain_list daisy by_author=True %}
         {% endif %}
-       {% if last_tag.culturepl_link %}
-       <li><a href="{{ last_tag.culturepl_link }}">
-           {% trans "in Culture.pl" %}
-       </a></li>
-       {% endif %}
-            </ul>
-            {% endif %}
-        </div>
-
-        <div class="download">
-            {% comment %}
-            <h2 class='mono'>{% trans "Download" %}:</h2>
-            <ul>
-                <li><a href="">wszystko</a></li>
-                <li><a href="">część</a></li>
-            </ul>
-            {% endcomment %}
-        </div>
-        {% endif %}
-
+      {% else %}
+        {% trans "Sorry! Search cirteria did not match any resources." %}
+        {% include "info/join_us.html" %}
+      {% endif %}
     </div>
 
-    <div class="clearboth"></div>
-
-
-
-    {% if not theme_is_set %}
-    <div id="books-list">
-        {% if object_list %}
-            {% work_list object_list %}
+    {% if categories.theme and list_type != 'audiobooks' %}
+      <h2>{% trans "Motifs and themes" %}</h2>
+      {% plain_list categories.theme choice=tags list_type=list_type %}
+    {% endif %}
+  {% endif %}
+
+  {% for tag in tags %}
+    {% if tag.category != 'set' %}
+      <h2>{% trans tag.category as c %}{{ c|capfirst }}: {{ tag }}</h2>
+      <div class="white-box">
+        {% if tag.has_description %}
+          {{ tag.description|safe }}
         {% else %}
-            {% trans "Sorry! Search cirteria did not match any resources." %}
-            {% include "info/join_us.html" %}
+          <em>{% trans "No description." %}</em>
         {% endif %}
-    </div>
+      </div>
+
+      {% if tag.wiki_link %}
+        <div class="white-box">
+        <a href="{{ tag.wiki_link }}">
+          {{ tag }} {% trans "in Wikipedia" %}
+        </a></div>
+      {% endif %}
+      {% if tag.culturepl_link %}
+        <div class="white-box">
+        <a href="{{ tag.culturepl_link }}">
+          {{ tag }} {% trans "in Culture.pl" %}
+        </a></div>
+      {% endif %}
     {% endif %}
-    {% endwith %}
+  {% endfor %}
 {% endblock %}