{% extends "courses/base_course.html" %} {% load i18n peer_review_tags %} {% block nav-course-reviews %}class="active"{% endblock %} {% block extrajs %} {% endblock %} {% block content %} {% if criteria_formset.errors %}

{% trans "Error" %}

{% trans "There were errors when submitting this form. Please check the specific errors below." %}
{% endif %}

{% trans "Review for" %} {{ assignment.kq.title }}

{% trans "Activity description" %}

{{ assignment.description|safe }}

{% trans "Student response" %}

{{ submission.text }} {% if submission.file %}

{% trans "Download student's submission" %}

{% trans "Warning!" %} {% blocktrans with site=site %} You should scan this file with your antivirus software. {{ site }} is not responsible for any harm this may cause to your computer. {% endblocktrans %}
{% endif %}

{% trans "Your review" %}

{% if is_assignation_expired %} {% trans "Warning!" %} {% blocktrans with assignation_expire=assignation_expire %} This submission can be now claimed by other student. Your claim expired on {{ assignation_expire }}, but you still can send your review. Hurry up! {% endblocktrans %} {% else %} {% trans "Remember:" %} {% blocktrans with assignation_expire=assignation_expire %} You must review this exercise before {{ assignation_expire }}. After this, date, the review can be reassigned to another student. {% endblocktrans %} {% endif %}
{% csrf_token %} {{ criteria_formset.management_form }} {% for criterion in criteria_formset %} {% if forloop.counter0|divisibleby:"2" %}
{% endif %}
{{ criterion.evaluation_criterion_id }}

{{ criterion.evaluation_criterion_id.value|get_criterion_title }}

{{ criterion.evaluation_criterion_id.value|get_criterion_description|escape }}
{% for choice in criterion.value %} {% endfor %}
{{ criterion.value.errors }}
{% if forloop.counter|divisibleby:"2" %}
{% endif %} {% endfor %} {{ submission_form }}
{% endblock %}