moviewyrm/bookwyrm/templates/snippets/book_titleby.html

10 lines
180 B
HTML
Raw Normal View History

2020-09-29 01:25:05 +00:00
<span>
2020-05-04 00:53:14 +00:00
<a href="/book/{{ book.id }}">{{ book.title }}</a>
2020-04-02 02:38:07 +00:00
</span>
{% if book.authors %}
2020-09-29 01:25:05 +00:00
<span>
2020-04-02 02:38:07 +00:00
by {% include 'snippets/authors.html' with book=book %}
</span>
{% endif %}