From 0c9dff61ca5798b4a46e85976b55fbce895c8aa1 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Mon, 2 Nov 2020 13:41:43 -0800 Subject: [PATCH] Re-adds hiding book in reviews feed --- bookwyrm/templates/snippets/status_content.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bookwyrm/templates/snippets/status_content.html b/bookwyrm/templates/snippets/status_content.html index 595b2642..503290da 100644 --- a/bookwyrm/templates/snippets/status_content.html +++ b/bookwyrm/templates/snippets/status_content.html @@ -20,7 +20,8 @@ {% endif %} -{% if status.book or status.mention_books.count %} +{% if not hide_book %} +{% if status.book or status.mention_books.count %}
{% if status.book %} {% include 'snippets/book_preview.html' with book=status.book %} @@ -29,3 +30,4 @@ {% endif %}
{% endif %} +{% endif %}