bookwyrm-mastodon/bookwyrm/templates/snippets/book_titleby.html

9 lines
317 B
HTML
Raw Normal View History

{% load i18n %}
2021-05-11 18:14:42 -04:00
{% load utilities %}
2020-04-01 22:38:07 -04:00
{% if book.authors %}
{% blocktrans with path=book.local_path title=book|book_title %}<a href="{{ path }}">{{ title }}</a> by {% endblocktrans %}{% include 'snippets/authors.html' with book=book %}
{% else %}
<a href="{{ book.local_path }}">{{ book|book_title }}</a>
2020-04-01 22:38:07 -04:00
{% endif %}