{% extends "base-apply.html" %} {% load i18n bleach_tags submission_tags %} {% block title %}{% trans "Review for" %} {{ review.submission.title }}{% endblock %} {% block content %}
{% trans "Back to submission" %}

Review

{% trans "For" %}: {{ review.submission.title }} {% trans "by" %} {{ review.author }} {% trans "at" %} {{ review.created_at|date:"SHORT_DATE_FORMAT" }} {% if review.is_updated %}({% trans "Last updated" %}: {{ review.updated_at|date:"SHORT_DATE_FORMAT" }}){% endif %}
{% include 'review/includes/review_opinions_list.html' with opinions=review.opinions.all %}
{% trans "Recommendation" %}

{{ review.get_recommendation_display }}

{% trans "Score" %}

{{ review.get_score_display }}

{{ review.get_visibility_display }}
{% if perms.funds.delete_review or request.user == review.author.reviewer %}
{% trans "Delete" %}
{% endif %} {% if perms.funds.change_review or request.user == review.author.reviewer %}
{% trans "Edit" %}
{% endif %} {% if not review.for_latest %}
{% trans "Review was not against the latest version" %}:

{% trans "Compare" %}

{% endif %}
{{ object.get_comments_display|submission_links }} {{ object.output_answers|submission_links }}
{% if form %}
{% csrf_token %} {{ form }}

{% trans "An opinion is a replacement for a review. You will no longer be able to submit a review for this application." %}

{% endif %} {% endblock %}