bookwyrm/bookwyrm/templates/snippets/status/headers/stopped_reading.html

27 lines
712 B
HTML
Raw Normal View History

{% spaceless %}
{% load i18n %}
{% load utilities %}
{% load status_display %}
{% load_book status as book %}
{% if book.authors.exists %}
{% with author=book.authors.first %}
{% blocktrans trimmed with book_path=book.local_path book=book|book_title author_name=author.name author_path=author.local_path %}
stopped reading <a href="{{ book_path }}">{{ book }}</a> by <a href="{{ author_path }}">{{ author_name }}</a>
{% endblocktrans %}
{% endwith %}
{% else %}
{% blocktrans trimmed with book_path=book.local_path book=book|book_title %}
stopped reading <a href="{{ book_path }}">{{ book }}</a>
{% endblocktrans %}
2024-01-27 18:02:42 +00:00
{% endif %}
{% include 'snippets/book_series.html' with book=book %}
2024-01-27 17:58:57 +00:00
{% endspaceless %}