moviewyrm/bookwyrm/templates/user/books_header.html

11 lines
330 B
HTML
Raw Normal View History

2021-03-31 16:50:40 +00:00
{% load i18n %}
{% if is_self %}
2022-01-11 20:10:30 +00:00
{% if shelf.identifier == 'all' %}
{% trans "Your books" %}
{% else %}
{% include "snippets/translated_shelf_name.html" with shelf=shelf %}
{% endif %}
2021-03-31 16:50:40 +00:00
{% else %}
2022-01-11 20:10:30 +00:00
{% blocktrans with username=user.display_name %}{{ username }}'s books{% endblocktrans %}
2021-03-31 16:50:40 +00:00
{% endif %}