mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-05 16:39:42 +00:00
Re-adds hiding book in reviews feed
This commit is contained in:
parent
81e207dcf8
commit
0c9dff61ca
1 changed files with 3 additions and 1 deletions
|
@ -20,7 +20,8 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</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 %}">
|
<div class="{% if status.status_type != 'GeneratedNote' %}box{% endif %}">
|
||||||
{% if status.book %}
|
{% if status.book %}
|
||||||
{% include 'snippets/book_preview.html' with book=status.book %}
|
{% include 'snippets/book_preview.html' with book=status.book %}
|
||||||
|
@ -29,3 +30,4 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
|
Loading…
Reference in a new issue