{% 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.content_warning %}

{{ status.content_warning }}

{% include 'snippets/toggle/open_button.html' with text="show more" class="is-small" controls_text="show-status-cw" controls_uid=status.id %}
{% 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 %}