Switch cover.
[wolnelektury.git] / src / catalogue / templates / catalogue / collection_box.html
1 {% spaceless %}
2   {% load i18n %}
3   {% load thumbnail %}
4   <div class="collection-box white-box">
5     <h2><a href="{{ collection.get_absolute_url }}">{{ collection }}</a></h2>
6     <div class="description">
7     {% if collection.description %}
8       {{ collection.description|safe|truncatewords_html:40 }}
9     {% endif %}
10     </div>
11     <div class="covers">
12       {% for book in collection.get_books|slice:":6" %}
13         <a href="{{ book.get_absolute_url }}">
14           <img src="{% thumbnail book.cover_clean '139x193' as th %}{{ th.url }}{% endthumbnail %}" alt="{{ book.pretty_title }}" title="{{ book.pretty_title }}">
15         </a>
16       {% endfor %}
17     </div>
18   </div>
19 {% endspaceless %}