{% spaceless %} {% load i18n %}

{% trans "Collection" %}: {{ collection }}

{% if collection.description %} {{ collection.description|safe|truncatewords_html:40 }} {% endif %} {% for book in collection.get_books|slice:":5" %} {{ book.mini_box }} {% endfor %} {% with collection.get_books.count|add:-5 as more %} {% if more > 0 %} {% blocktrans count c=more %}and one more{% plural %}and {{ c }} more{% endblocktrans %} {% endif %} {% endwith %}
{% endspaceless %}