moviewyrm/bookwyrm/templates/snippets/book_titleby.html
2021-05-11 15:14:42 -07:00

9 lines
307 B
HTML

{% load i18n %}
{% load utilities %}
{% if book.authors %}
{% blocktrans with path=book.local_path title=book|title %}<a href="{{ path }}">{{ title }}</a> by {% endblocktrans %}{% include 'snippets/authors.html' with book=book %}
{% else %}
<a href="{{ book.local_path }}">{{ book|title }}</a>
{% endif %}