{% spaceless %} {% load i18n %} {% load ssi_include from ssify %} {% load cache %}

{% trans "Collection" %}: {{ obj }}

{% if obj.description %} {{ obj.description|safe|truncatewords_html:40 }} {% endif %} {% for book in obj.get_books|slice:":5" %} {% cache 86400 book_mini_box book.pk %} {% include 'catalogue/book_mini_box.html' %} {% endcache %} {#% ssi_include 'catalogue_book_mini' pk=book.pk %#} {% endfor %} {% with obj.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 %}