forked from mirrors/bookwyrm
dfe92a27c0
(instead of shelf.identifier)
16 lines
439 B
HTML
16 lines
439 B
HTML
{% load i18n %}
|
|
{% if is_self %}
|
|
{% if shelf.identifier == 'to-read' %}
|
|
{% trans "To Read" %}
|
|
{% elif shelf.identifier == 'reading' %}
|
|
{% trans "Currently Reading" %}
|
|
{% elif shelf.identifier == 'read' %}
|
|
{% trans "Read" %}
|
|
{% elif shelf.identifier == 'all' %}
|
|
{% trans "Your books" %}
|
|
{% else %}
|
|
{{ shelf.name }}
|
|
{% endif %}
|
|
{% else %}
|
|
{% blocktrans with username=user.display_name %}{{ username }}'s books{% endblocktrans %}
|
|
{% endif %}
|