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

Review

For {{ review.submission.title }} by {{ review.author }} at {{ review.updated_at|date:"Y-m-d" }}
{% include 'review/includes/review_opinions_list.html' with opinions=review.opinions.all %}
Recommendation

{{ review.get_recommendation_display }}

Score

{{ review.get_score_display }}

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

Compare

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