X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/c26ab6ee15974c1133a6d08c459b51199185f25f..357027375ff8867f42ca34bcbfb5a78b5b185fc3:/apps/catalogue/templates/catalogue/picture_list.html diff --git a/apps/catalogue/templates/catalogue/picture_list.html b/apps/catalogue/templates/catalogue/picture_list.html deleted file mode 100644 index a17d98719..000000000 --- a/apps/catalogue/templates/catalogue/picture_list.html +++ /dev/null @@ -1,32 +0,0 @@ -{% extends "catalogue/book_list.html" %} -{% load i18n %} -{% load catalogue_tags chunks %} -{% load thumbnail %} - -{% block bodyid %}picture-list{% endblock %} - -{% block titleextra %}{% trans "Listing of all pictures" %}{% endblock %} - -{% block picture_list_header %}{% trans "Listing of all pictures" %}{% endblock %} - - -{% block book_list %} -{% for author, group in pictures_by_author.items %} - -
-

{{ author }}

- {% for picture in group %} -
- {% thumbnail picture.image_file "300x300" as im %} - - {% endthumbnail %} - {{picture.title}} -
-
- {% endfor %} -
- -{% endfor %} - -{% endblock %} -