X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/b3a2a942879cf81025be9cbfcb924b3ffca038c0..d52c76021eaf1621b4e55a6eba1df1c0404bd7dd:/wolnelektury/templates/catalogue/tagged_object_list.html diff --git a/wolnelektury/templates/catalogue/tagged_object_list.html b/wolnelektury/templates/catalogue/tagged_object_list.html index d1d0b56b6..7c33a3740 100644 --- a/wolnelektury/templates/catalogue/tagged_object_list.html +++ b/wolnelektury/templates/catalogue/tagged_object_list.html @@ -1,82 +1,153 @@ {% extends "base.html" %} -{% load catalogue_tags pagination_tags %} +{% load i18n %} +{% load catalogue_tags pagination_tags switch_tag %} -{% block title %}{% title_from_tags tags %} w WolneLektury.pl{% endblock %} +{% block titleextra %}{% title_from_tags tags %}{% endblock %} {% block bodyid %}tagged-object-list{% endblock %} {% block body %} +
+

{% title_from_tags tags %}

- {% breadcrumbs tags %} - - {% if shelf_is_set and not object_list %} -
-

Twoja półka jest pusta

-

Możesz wrzucić książkę na półkę, wchodząc na stronę danej lektury i klikając na przycisk „Na półkę!”.

+ + {% with tags|last as last_tag %} + {% if last_tag.has_description %} +
+
{{ last_tag.description|safe }}
+
{{ last_tag.description|safe|truncatewords_html:30 }}
+
+
+

+ {% endif %} + + +
+ {% if categories.author %} +

{% trans "Authors" %}: + {% inline_tag_list categories.author tags %} +

+ {% endif %} + {% if categories.kind %} +

{% trans "Kinds" %}: + {% inline_tag_list categories.kind tags %} +

+ {% endif %} + {% if categories.genre %} +

{% trans "Genres" %}: + {% inline_tag_list categories.genre tags %} +

+ {% endif %} + {% if categories.epoch %} +

{% trans "Epochs" %}: + {% inline_tag_list categories.epoch tags %} +

+ {% endif %} +
+ + {% if categories.theme %} +
+

{% trans "Motifs and themes" %}

+
+ {% tag_list categories.theme tags %} +
+
+ {% endif %} +
- {% else %} +
+ + +
+ +
+ Dobranoc, obróć jeszcze raz na mnie oczęta,
+ (…) Daj mi pierś ucałować
+ Dobranoc, zapięta. +
+

Adam Mickiewicz, Dziady część III

+
+ +
+

{% trans "See also" %}:

+ +
+ +
+

{% trans "Download" %}:

+ +
+ +
+ +
+ + + + {% autopaginate object_list 10 %}
- {% with tags|last as last_tag %} - {% if last_tag.has_description %} -
- {{ last_tag.description|safe }} -
-
-

Zwiń opis ▲

+ + + {% if last_tag.gazeta_link %} +

+ {% switch last_tag.category %} + {% case "author" %} + {% trans "Read work's study of this author on Lektury.Gazeta.pl" %} + {% case "epoch" %} + {% blocktrans %}Read study of epoch {{ last_tag }} on Lektury.Gazeta.pl{% endblocktrans %} + {% case "kind" %} + {% blocktrans %}Read study of kind {{ last_tag }} on Lektury.Gazeta.pl{% endblocktrans %} + {% case "genre" %} + {% blocktrans %}Read study of genre {{ last_tag }} on Lektury.Gazeta.pl{% endblocktrans %} + {% else %} + {% trans "Read related study on Lektury.Gazeta.pl" %} + {% endswitch %} +

{% endif %} - {% if shelf_is_set %} - - Pobierz wszystkie książki z tej półki - + {% if last_tag.wiki_link %} +

+ {% switch last_tag.category %} + {% case "author" %} + {% trans "Read article about this author on Wikipedia" %} + {% case "epoch" %} + {% blocktrans %}Read article about epoch {{ last_tag }} on Wikipedia{% endblocktrans %} + {% case "kind" %} + {% blocktrans %}Read article about kind {{ last_tag }} on Wikipedia{% endblocktrans %} + {% case "genre" %} + {% blocktrans %}Read article about genre {{ last_tag }} on Wikipedia{% endblocktrans %} + {% else %} + {% trans "Read related article on Wikipedia" %} + {% endswitch %} +

{% endif %} - {% if last_tag.gazeta_link %} -

{{ last_tag }} w Lektury.Gazeta.pl

+ + {% if object_list %} + {% spaceless %} +
    + {% for book in object_list %} +
  1. + {% if user_is_owner %} + {% trans "Delete" %} + {% endif %} + {{ book.short_html }}
  2. + {% endfor %} +
+ {% endspaceless %} + {% paginate %} + {% else %} + {% trans "Sorry! Search cirteria did not match any resources." %} + {% include "info/join_us.html" %} {% endif %} -
    - {% for book in object_list %} -
  1. - {% if user_is_owner %} - Usuń - {% endif %} - {{ book.short_html }}
  2. - {% endfor %} -
{% endwith %} - {% paginate %} -
-
-
- {% if categories.author %} -

Autorzy

- {% tag_list categories.author tags %} - {% endif %} - {% if categories.kind %} -

Rodzaje

- {% tag_list categories.kind tags %} - {% endif %} - {% if categories.genre %} -

Gatunki literackie

- {% tag_list categories.genre tags %} - {% endif %} - {% if categories.epoch %} -

Epoki

- {% tag_list categories.epoch tags %} - {% endif %} -
-
- {% if categories.theme %} -

Motywy

- {% tag_list categories.theme tags %} - {% endif %} -
-
-
- {% endif %} -
- -
-

* Ładowanie

-
-{% endblock %} \ No newline at end of file + {% if object_list %} + {% comment %} If we didn't find anything there will be nothing on the right side as well {% endcomment %} + {% endif %} +{% endblock %}