{% 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' %}
{{ status.content | safe }}
{% 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 %}