{% load fr_display %}
{% if status.status_type == 'Review' and not status.name or not status.content %}
{% include 'snippets/status_header.html' with status=status %}
{% include 'snippets/stars.html' with book=book rating=status.rating %}
{% else %}
{% if status.boosted_status %}
{% include 'snippets/status_header.html' with status=status.boosted_status %}
{% include 'snippets/status_header.html' with status=status %}
{% else %}
{% include 'snippets/status_header.html' with status=status %}
{% endif %}
{% include 'snippets/status_content.html' with status=status %}
{% if status.status_type == 'Boost' %}
{% include 'snippets/interaction.html' with activity=status|boosted_status %}
{% else %}
{% include 'snippets/interaction.html' with activity=status %}
{% endif %}
{% endif %}