{% 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 item.book as book %} {{ book.short_html|safe }} {% if not book.single %} {% for chunk in item.chunks %} {{ chunk.short_html|safe }} {% endfor %} {% endif %} {% endwith %} {% endfor %} {% endwith %}
{% paginate %} {% blocktrans count c=cnt %}{{c}} book{% plural %}{{c}} books{% endblocktrans %}
{% if not books %}

{% trans "No books found." %}

{% endif %}