X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/357027375ff8867f42ca34bcbfb5a78b5b185fc3..87e084d47c335cd6f0b3e91d614999f55d148044:/src/catalogue/templates/catalogue/collections.html diff --git a/src/catalogue/templates/catalogue/collections.html b/src/catalogue/templates/catalogue/collections.html new file mode 100644 index 000000000..1c6987278 --- /dev/null +++ b/src/catalogue/templates/catalogue/collections.html @@ -0,0 +1,22 @@ +{% extends "base.html" %} +{% load i18n %} +{% load catalogue_tags %} +{% load ssi_include from ssify %} + +{% block titleextra %}{% trans "Collections" %}{% endblock %} + +{% block bodyid %}collections{% endblock %} + +{% block body %} +

{% trans "Collections" %}

+ + {% for obj in best %} + {% ssi_include 'catalogue_collection_box' pk=obj.pk %} + {% endfor %} + +

{% trans "All collections" %}

+ {% plain_list objects %} + + + +{% endblock %}