Merge pull request #1589 from hughrun/shelf-names

match page title to active shelf
This commit is contained in:
Mouse Reeve 2021-11-07 05:41:40 -08:00 committed by GitHub
commit 582d2e6d0d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 1 deletions

View file

@ -5,7 +5,7 @@
{% load i18n %}
{% block title %}
{% include 'user/books_header.html' %}
{% include 'user/books_header.html' with shelf=shelf %}
{% endblock %}
{% block opengraph_images %}

View file

@ -1,6 +1,16 @@
{% 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 %}