moviewyrm/bookwyrm/templates/snippets/book_titleby.html

6 lines
142 B
HTML
Raw Normal View History

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