X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/ea9d7d13a44a6ad6357b1af8c977c27753268521..9bc86f5a6542c5893ac94284da33162a7c7be2d6:/src/catalogue/templates/catalogue/2022/book_list.html?ds=sidebyside diff --git a/src/catalogue/templates/catalogue/2022/book_list.html b/src/catalogue/templates/catalogue/2022/book_list.html deleted file mode 100644 index e08cf3ad9..000000000 --- a/src/catalogue/templates/catalogue/2022/book_list.html +++ /dev/null @@ -1,126 +0,0 @@ -{% extends '2022/base.html' %} -{% load catalogue_tags %} -{% load thumbnail %} -{% load pagination_tags %} - -{% load choose_cites from social_tags %} - - -{% block breadcrumbs %} - Katalog - {% if main_tag %} - {{ main_tag.get_category_display|title }} - {% endif %} -{% endblock %} - -{% block main %} -
-
- {% if main_tag.photo %} - {% thumbnail main_tag.photo '40x40' crop='center' as th %} -
- {{ main_tag.name }} -
- {% endthumbnail %} - {% endif %} -

- {% if main_tag %} - {{ main_tag.name }} - {% else %} - {{ view.title }} - {% endif %} -

-
-
- -
-
-
- - -
- {% for tag in tags %} - {% if tag is not main_tag %} - - {{ tag }} - ✖ - - {% endif %} - {% endfor %} -
- -
- {% if view.get_orderings %} -
- Sortuj: -
- {% for ordering in view.get_orderings %} - - {% endfor %} -
-
- {% endif %} -
-
-
-
-

{% nice_title_from_tags tags suggested_tags_by_category %}

- {% if suggested_tags %} -
- {% for tag in suggested_tags %} - - {{ tag }} - - {% endfor %} -
- {% endif %} -
-
- - {% autopaginate object_list view.page_size %} - -
-
- {% for book in object_list %} - {% include "catalogue/2022/book_box.html" %} - {% endfor %} -
-
- -
- {% paginate using '2022/paginate.html' %} -
- - {% if main_tag %} -
-
- {% with tag=main_tag %} - {% include 'catalogue/2022/author_box.html' %} - {% endwith %} - {% choose_cites 3 author=main_tag as cites %} - {% if cites %} -
-
-
- - {% for fragment in cites %} -
- {% include "catalogue/2022/fragment_slider_box.html" %} -
- {% endfor %} - -
-
-
- {% endif %} -
-
- {% endif %} -{% endblock %}