forked from mirrors/bookwyrm
d8098357e6
resolves #1586
16 lines
410 B
HTML
16 lines
410 B
HTML
{% load i18n %}
|
|
{% if is_self %}
|
|
{% if shelfname == 'to-read' %}
|
|
{% trans "To Read" %}
|
|
{% elif shelfname == 'reading' %}
|
|
{% trans "Currently Reading" %}
|
|
{% elif shelfname == 'read' %}
|
|
{% trans "Read" %}
|
|
{% elif shelfname == 'all' %}
|
|
{% trans "Your books" %}
|
|
{% else %}
|
|
{{ shelfname }}
|
|
{% endif %}
|
|
{% else %}
|
|
{% blocktrans with username=user.display_name %}{{ username }}'s books{% endblocktrans %}
|
|
{% endif %}
|