{% load i18n %} {% load pagination_tags %} {% load username from common_tags %}
{% if not viewed_user %} {% endif %}
{% if not viewed_user %} {% else %} {% endif %} {% with cnt=books|length %} {% autopaginate books 100 %} {% for item in books %} {% with book=item.book chunk=item.chunks.0 %} {% include 'catalogue/book_list/book.html' %} {% if not book.single %} {% for chunk in item.chunks %} {% include 'catalogue/book_list/chunk.html' %} {% endfor %} {% endif %} {% endwith %} {% endfor %} {% endwith %}
{% paginate %} {% blocktrans count c=cnt %}{{c}} book{% plural %}{{c}} books{% endblocktrans %}
{% if not books %}

{% trans "No books found." %}

{% endif %}