1 {% extends "catalogue/book_list.html" %}
 
   3 {% load catalogue_tags chunks %}
 
   6 {% block bodyid %}picture-list{% endblock %}
 
   8 {% block titleextra %}{% trans "Listing of all pictures" %}{% endblock %}
 
  10 {% block picture_list_header %}{% trans "Listing of all pictures" %}{% endblock %}
 
  14 {% for author, group in pictures_by_author.items %}
 
  15 <a name="{{ author.slug }}"/>
 
  17   <h2><a href="{{ author.get_absolute_url }}">{{ author }}</a></h2>
 
  18   {% for picture in group %}
 
  20     {% thumbnail picture.image_file "300x300" as im %}
 
  21     <img style="float: left; margin:{{ im|margin:"300x300" }}" src="{{ im.url }}" width="{{ im.x }}" height="{{ im.y }}" />
 
  23     <span class="title"><a href="{{picture.get_absolute_url}}">{{picture.title}}</a></span>
 
  24     <br class="clearboth"/>