diff --git a/bookwyrm/templates/book/suggestion_list/book_card.html b/bookwyrm/templates/book/suggestion_list/book_card.html index afbab7476..192979dd4 100644 --- a/bookwyrm/templates/book/suggestion_list/book_card.html +++ b/bookwyrm/templates/book/suggestion_list/book_card.html @@ -2,7 +2,7 @@ {% load book_display_tags %}
{% include 'snippets/book_titleby.html' with book=item_book %}
- {% if item_book|book_description %} + {% if item.notes %} + {% include "lists/list_item_notes.html" with list=book.suggestion_list hide_edit=True no_trim=False trim_length=15 %} + {% else %}{% with full=item_book|book_description %} {% include 'snippets/trimmed_text.html' with trim_length=15 hide_more=True %} {% endwith %}- {% else %} - {% include "lists/list_item_notes.html" with list=book.suggestion_list hide_edit=True %} {% endif %}