1 {% extends "catalogue/base.html" %}
3 {% load thumbnail pagination_tags %}
7 <h1>{% trans "Cover images" %}</h1>
10 <a href="{% url 'cover_add_image' %}">{% trans "Add new" %}</a>
14 {% autopaginate object_list 100 %}
15 {% for image in object_list %}
16 <a href="{{ image.get_absolute_url }}" style="display:inline-block; width:200px;">
18 <img style="height: 100px"
19 src="{% thumbnail image.file "x100" as thumb %}
23 {% endthumbnail %}" />