{% load tz %} {% load i18n %} {% block list_item %}
  • {% endblock %} {% spaceless %}

    {% trans "Assess Peers" %} {% if peer_start %} {% blocktrans with start_date=peer_start|utc|date:"N j, Y H:i e" time_until=peer_start|timeuntil %}available {{ start_date }} (in {{ time_until }}){% endblocktrans %} {% elif peer_due %} {% blocktrans with due_date=peer_due|utc|date:"N j, Y H:i e" time_until=peer_due|timeuntil %}due {{ due_date }} (in {{ time_until }}){% endblocktrans %} {% endif %}

    {% block title %} {% trans "This step's status" %}: {% blocktrans with graded=graded must_grade=must_grade%}In Progress ({{ graded }} of {{ must_grade }}){% endblocktrans %} {% endblock %}
    {% block body %}

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

    • {% blocktrans with review_num=review_num must_grade=must_grade%}

      Assessment # {{ review_num }} of {{ must_grade }}

      {% endblocktrans %}
      {{ peer_submission.answer.text|linebreaks }}
        {% for criterion in rubric_criteria %}
      1. {{ criterion.prompt }} * ({% trans "Required" %})

          {% for option in criterion.options %}
        1. {% endfor %} {% if criterion.feedback == 'optional' %} {% endif %}
      2. {% endfor %}

    {% trans "We could not submit your assessment" %}

    {% endblock %} {% endspaceless %}