{% extends "base-apply.html" %} {% load i18n nh3_tags review_tags workflow_tags %} {% block title %}{% trans "Reviews" %}{% endblock %} {% block body_class %}reviews-list__body{% endblock %} {% block content %} {% adminbar %} {% slot header %}{% trans "Reviews" %}{% endslot %} {% slot sub_heading %}{% trans "For" %} {{ submission.title }}{% endslot %} {% if request.user|has_review_perm:submission %} {% if request.user|has_draft:submission or request.user|can_review:submission %} {% include 'review/includes/review_button.html' with submission=submission %} {% endif %} {% endif %} {% endadminbar %}
{{ answers.question }} | {% for answer in answers.answers %} {% if forloop.parentloop.first %}{{ answer|safe }} | {% elif answers.question == "Opinions"%}{{ answer }} | {% else %}{{ answer|nh3 }} | {% endif %} {% endfor %}
---|