{% spaceless %} {% load bookwyrm_tags %} {% load i18n %} {% with status_type=status.status_type %}
{% if status_type == 'Review' or status_type == 'Rating' %}
{% if status.name %}

{{ status.name|escape }}

{% endif %} {% if status_type == 'Rating' %} {# @todo Is it possible to not hard-code the value? #} {% endif %} {% include 'snippets/stars.html' with rating=status.rating %}
{% endif %} {% if status.content_warning %}

{{ status.content_warning }}

{% trans "Show more" as button_text %} {% with text=button_text class="is-small" controls_text="show-status-cw" controls_uid=status.id %} {% include 'snippets/toggle/open_button.html' %} {% endwith %}
{% endif %}
{% if not hide_book %} {% if status.book or status.mention_books.count %}
{% if status.book %} {% with book=status.book %} {% include 'snippets/status/book_preview.html' %} {% endwith %} {% elif status.mention_books.count %} {% with book=status.mention_books.first %} {% include 'snippets/status/book_preview.html' %} {% endwith %} {% endif %}
{% endif %} {% endif %} {% endwith %} {% endspaceless %}