{% load i18n %} {% if user.is_authenticated or not sopds_auth %}
{% trans "BOOKSHELF" %}
{% if sopds_auth %}
{% for b in bookshelf %} {% endfor %}
{% else %} {% blocktrans %}Bookshelf is available only SimpleOPDS Catalog mode with activated user authorization.{% endblocktrans %} {% endif %}
{% trans "STATISTICS" %}

{% trans "This сatalog contains:" %} {{ stats.allbooks }} {% trans "books," %} {{ stats.allauthors }} {% trans "authors," %} {{ stats.allgenres }} {% trans "genres and" %} {{ stats.allseries }} {% trans "series." %}

{% trans "Last collection scan date:" %} {% if stats.lastscan_date %}{{ stats.lastscan_date }}{% else %}{% trans "Never" %}{% endif %}

{% trans "RANDOM BOOK" %}
{% if random_book %}

{{ random_book.title }}

{{ random_book.annotation | truncatechars:400}}
{% endif %}
{% endif %}