{% if score_categories|length > 1 %}
{% for score in review.scores %}
{{ score }}
{% endfor %}
{% endif %}
{% for answer in review.answers %}
{{ answer.answer }}
{% endfor %}
{{ review.text|rich_text }}
{% if show_reviewer_name %}
{% include "orga/includes/user_name.html" with user=review.user lightbox=True %}
{% elif not read_only %}
{{ phrases.base.edit }}
{% endif %}
{# Reviewers have their own delete path on their review form, so this button is only for admins deleting other people's reviews. #}
{% if request.user.is_administrator %}
{% translate "Delete" %}
{% endif %}