{% extends "catalogue/book_list.html" %} {% load i18n %} {% load catalogue_tags chunks %} {% load thumbnail %} {% block bodyid %}picture-list{% endblock %} {% block titleextra %}{% trans "Listing of all works" %}{% endblock %} {% block picture_list_header %}{% trans "Listing of all works" %}{% 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 %}