c32122f322219cace034fffaefbd6038426b614b
[wolnelektury.git] / src / catalogue / templates / catalogue / collection_box.html
1 {% spaceless %}
2   {% load i18n %}
3   <div class="collection-box white-box">
4     <h2><a href="{{ collection.get_absolute_url }}">{% trans "Collection" %}: {{ collection }}</a></h2>
5     {% if collection.description %}
6       {{ collection.description|safe|truncatewords_html:40 }}
7     {% endif %}
8     {% for book in collection.get_books|slice:":5" %}
9       {{ book.mini_box }}
10     {% endfor %}
11     {% with collection.get_books.count|add:-5 as more %}
12       {% if more > 0 %}
13         <a href="{{ collection.get_absolute_url }}">
14           {% blocktrans count c=more %}and one more{% plural %}and {{ c }} more{% endblocktrans %}
15         </a>
16       {% endif %}
17     {% endwith %}
18   </div>
19 {% endspaceless %}