diff --git a/fedireads/templates/snippets/status.html b/fedireads/templates/snippets/status.html index 82284fad1..af4b73fa7 100644 --- a/fedireads/templates/snippets/status.html +++ b/fedireads/templates/snippets/status.html @@ -21,13 +21,15 @@ {% if not hide_book and status.mention_books.count %} + {% for book in status.mention_books.all|slice:"0:3" %}
{% if status.status_type == 'Review' %} - {% include 'snippets/book.html' with book=status.mention_books.first %} + {% include 'snippets/book.html' with book=book %} {% else %} - {% include 'snippets/book.html' with book=status.mention_books.first description=True %} + {% include 'snippets/book.html' with book=book description=True %} {% endif %}
+ {% endfor %} {% endif %} {% if not hide_book and status.book%}