Searching, filtering fixes.
[wolnelektury.git] / src / catalogue / templates / catalogue / differentiate_tags.html
index 6c0fcfc..05709dd 100644 (file)
@@ -1,4 +1,4 @@
-{% extends "base/base.html" %}
+{% extends request.EXPERIMENTS.layout.value|yesno:"2022/base_simple.html,base/base.html" %}
 {% load i18n %}
 {% load catalogue_tags %}
 
   <h1>{% title_from_tags tags %}</h1>
 
   <p>{% trans "The criteria are ambiguous. Please select one of the following options:" %}</p>
-    <div id="books-list">
-      {% for option in options %}
-        <div class="book-description">
-          <p><a href="{% url 'tagged_object_list' option.url_args %}">{% if tags %}{% title_from_tags tags %}, {% endif %}<em>{%title_from_tags option.tags %}</em>{% if unparsed %}, {{unparsed|join:', '}}{% endif %}</a></p>
+  <div id="books-list">
+    {% for option in options %}
+      <div class="book-description">
+        <p><a href="{% url 'tagged_object_list' option.url_args %}">{% if tags %}{% title_from_tags tags %}, {% endif %}<em>{%title_from_tags option.tags %}</em>{% if unparsed %}, {{unparsed|join:', '}}{% endif %}</a></p>
         </div>
       {% endfor %}
     </div>