diff --git a/bookwyrm/templates/book.html b/bookwyrm/templates/book.html index 4bbc8d10..935e39ca 100644 --- a/bookwyrm/templates/book.html +++ b/bookwyrm/templates/book.html @@ -10,9 +10,14 @@ {{ book.title }}{% if book.subtitle %}: {{ book.subtitle }}{% endif %} - {% if book.authors %} + {% if book.series or book.author %}

+ {% if book.series %} + ({{ book.series }}{% if book.series_number %} #{{ book.series_number }}{% endif %})
+ {% endif %} + {% if book.authors %} by {% include 'snippets/authors.html' with book=book %} + {% endif %}

{% endif %}