Adds breadcrumbs to shelf page

This commit is contained in:
Mouse Reeve
2022-01-11 12:03:04 -08:00
parent a47bd7a05b
commit 150756dbd0
2 changed files with 24 additions and 9 deletions

View File

@ -0,0 +1,12 @@
{% load i18n %}
{% if shelf.identifier == 'all' %}
{% trans "All books" %}
{% elif shelf.identifier == 'to-read' %}
{% trans "To Read" %}
{% elif shelf.identifier == 'reading' %}
{% trans "Currently Reading" %}
{% elif shelf.identifier == 'read' %}
{% trans "Read" %}
{% else %}
{{ shelf.name }}
{% endif %}