Re-adds hiding book in reviews feed

This commit is contained in:
Mouse Reeve 2020-11-02 13:41:43 -08:00
parent 81e207dcf8
commit 0c9dff61ca

View file

@ -20,7 +20,8 @@
{% endif %}
</div>
{% if status.book or status.mention_books.count %}
{% if not hide_book %}
{% if status.book or status.mention_books.count %}
<div class="{% if status.status_type != 'GeneratedNote' %}box{% endif %}">
{% if status.book %}
{% include 'snippets/book_preview.html' with book=status.book %}
@ -29,3 +30,4 @@
{% endif %}
</div>
{% endif %}
{% endif %}