{% load bookwyrm_tags %}
{% if status.status_type == 'Review' %}

{% if status.name %}{{ status.name }}
{% endif %} {% include 'snippets/stars.html' with rating=status.rating %}

{% endif %} {% if status.quote %}
{{ status.quote }}

— {% include 'snippets/book_titleby.html' with book=status.book %}

{% endif %} {% if status.content and status.status_type != 'GeneratedNote' and status.status_type != 'Boost' %} {% include 'snippets/trimmed_text.html' with full=status.content|safe %} {% endif %} {% if status.attachments %}
{% for attachment in status.attachments.all %} {% endfor %}
{% endif %}
{% if not hide_book %} {% if status.book or status.mention_books.count %}
{% if status.book %} {% include 'snippets/book_preview.html' with book=status.book %} {% elif status.mention_books.count %} {% include 'snippets/book_preview.html' with book=status.mention_books.first %} {% endif %}
{% endif %} {% endif %}