{% load tz %} {% load i18n %} {% if show_survey %}
{% endif %} {% block list_item %}
  • {% endblock %} {% spaceless %}
    {% block button %} {% endblock %}

    {% trans "Assess Peers" %}

    {% if peer_start %} {# Translators: This string displays a date to the user, then tells them the time until that date. Example: "available August 13th, 2014 00:00 UTC (in 5 days and 45 minutes)" #} {% blocktrans with start_date=peer_start|timezone:"UTC"|date:"c" time_until=peer_start|timeuntil %} {% endblocktrans %} {% elif peer_due %} {# Translators: This string displays a date to the user, then tells them the time until that date. Example: "due August 13th, 2014 00:00 UTC (in 5 days and 45 minutes)" #} {% blocktrans with due_date=peer_due|timezone:"UTC"|date:"c" time_until=peer_due|timeuntil %} {% endblocktrans %} {% endif %} {% block title %} {% with review_num_string=review_num|stringformat:"s" must_grade_string=must_grade|stringformat:"s" %} {% blocktrans with review_number=''|safe|add:review_num_string|add:""|safe num_must_grade=''|safe|add:must_grade_string|add:""|safe %} In Progress ({{ review_number }} of {{ num_must_grade }}) {% endblocktrans %} {% endwith %} {% endblock %}
    {% block body %}

    {% trans "Read and assess the following response from one of your peers." %}

    • {% trans "Your peer's response to the prompt above" as translated_label %} {% include "legacy/oa_submission_answer.html" with answer=peer_submission.answer answer_text_label=translated_label %} {% trans "Associated Files" as translated_header %} {% include "legacy/oa_uploaded_file.html" with file_upload_type=file_upload_type file_urls=peer_file_urls header=translated_header class_prefix="peer-assessment" show_warning="true" including_template="peer_assessment" xblock_id=xblock_id %}
      {% include "legacy/oa_rubric.html" with rubric_type="peer" submission=peer_submission %}
    {% trans "We could not submit your assessment" %}
    {% endblock %} {% endspaceless %}