forked from mirrors/bookwyrm
22 lines
648 B
HTML
22 lines
648 B
HTML
{% 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 %}
|
|
wants to read <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 %}
|
|
wants to read <a href="{{ book_path }}">{{ book }}</a>
|
|
{% endblocktrans %}
|
|
|
|
{% endif %}
|
|
{% endspaceless %}
|