X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/357027375ff8867f42ca34bcbfb5a78b5b185fc3..cafca91e28661f24abbcda91c733de7e77d16e86:/src/catalogue/templates/catalogue/collection.html diff --git a/src/catalogue/templates/catalogue/collection.html b/src/catalogue/templates/catalogue/collection.html old mode 100755 new mode 100644 index 4bb12c938..7a08ab6c7 --- a/src/catalogue/templates/catalogue/collection.html +++ b/src/catalogue/templates/catalogue/collection.html @@ -1,10 +1,15 @@ -{% extends "catalogue/book_list.html" %} +{% extends "base/base.html" %} {% load i18n %} +{% load catalogue_tags %} -{% block titleextra %}{{ context.collection.title }}{% endblock %} +{% block titleextra %}{{ collection.title }}{% endblock %} -{% block book_list_header %}{{ context.collection.title }}{% endblock %} +{% block bodyid %}collection{% endblock %} -{% block book_list_info %} -{{ context.collection.description|safe }} +{% block body %} +

{{ collection.title }}

+ + {{ collection.description|safe }} + + {% plain_list collection.get_books by_author=True %} {% endblock %}