{% extends "base-apply.html" %} {% load i18n bleach_tags submission_tags heroicons %} {% block title %}{% trans "Review for" %} {{ review.submission.title }}{% endblock %} {% block content %} {% adminbar %} {% slot back_link %} {% trans "View submission" %} {% endslot %} {% slot header %}{% trans "Review" %}{% endslot %} {% slot sub_heading %} {% 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 %} {% endslot %} {% include 'review/includes/review_opinions_list.html' with opinions=review.opinions.all %} {% endadminbar %}
{% trans "Recommendation" %}

{{ review.get_recommendation_display }}

{% trans "Score" %}

{{ review.get_score_display }}

{% heroicon_micro "eye" class="inline me-1 w-4 h-4" aria_hidden=true %} {{ review.get_visibility_display }} {% if perms.funds.delete_review or request.user == review.author.reviewer %} {% heroicon_micro "trash" class="inline me-1 w-4 h-4" aria_hidden=true %} {% trans "Delete" %} {% endif %} {% if perms.funds.change_review or request.user == review.author.reviewer %} {% heroicon_micro "pencil-square" class="inline me-1 w-4 h-4" aria_hidden=true %} {% trans "Edit" %} {% endif %}
{% comment %} {% if not review.for_latest %} {% endcomment %}

* {% trans "Review was not against the latest version" %}

{% trans "Compare" %}
{% comment %} {% endif %} {% endcomment %}
{{ 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 %}