diff --git a/fedireads/templates/snippets/status.html b/fedireads/templates/snippets/status.html index 88c3f90b5..2566bac58 100644 --- a/fedireads/templates/snippets/status.html +++ b/fedireads/templates/snippets/status.html @@ -1,15 +1,5 @@ {% load fr_display %} -{% if status.status_type == 'Review' and not status.name or not status.content %} -
- -{% else %} -{{ status.content | safe }}{% endif %} + {% if not status.content and status.book and not hide_book and status.status_type != 'Boost' %} + {% include 'snippets/book_description.html' with book=status.book %} + {% endif %} + {% if status.status_type == 'Boost' %} {% include 'snippets/status_content.html' with status=status|boosted_status %} {% endif %}