diff --git a/bookwyrm/templates/snippets/status_content.html b/bookwyrm/templates/snippets/status_content.html index a14ec330..59587049 100644 --- a/bookwyrm/templates/snippets/status_content.html +++ b/bookwyrm/templates/snippets/status_content.html @@ -3,15 +3,17 @@
{% if not hide_book and status.mention_books.count %}
+
{% for book in status.mention_books.all|slice:"0:4" %} -
- {% include 'snippets/book_cover.html' with book=book %} - {% if status.mention_books.count > 1 %} -

{% include 'snippets/book_titleby.html' with book=book %}

- {% endif %} - {% include 'snippets/shelve_button.html' with book=book %} -
+
+ {% include 'snippets/book_cover.html' with book=book %} + {% if status.mention_books.count > 1 %} +

{% include 'snippets/book_titleby.html' with book=book %}

+ {% endif %} + {% include 'snippets/shelve_button.html' with book=book %} +
{% endfor %} +
{% endif %}