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

    {% trans "Learn to Assess Responses" %} {% if training_start %} {% trans "available" %} {{ training_start|utc|date:"N j, Y H:i e" }} (in {{ training_start|timeuntil }}) {% elif training_due %} due {{ training_due|utc|date:"N j, Y H:i e" }} (in {{ training_due|timeuntil }}) {% endif %}

    {% block title %} {% trans "This step's status" %}: {% trans "In Progress" %} ({{ training_num_completed }} of {{ training_num_available }}) {% endblock %}
    {% block body %}

    {% trans "Learning to Assess Responses" %}

    {% blocktrans %}Before you begin to assess your peers' responses, you'll learn how to complete peer assessments by reviewing responses that instructors have already assessed. If you select the same options for the response that the instructor selected, you'll move to the next step. If you don't select the same options, you'll review the response and try again.{% endblocktrans %}

    {% trans "Learning to Assess Responses" %}

    {% blocktrans %}Your assessment differs from the instructor's assessment of this response. Review the response and consider why the instructor may have assessed it differently. Then, try the assessment again.{% endblocktrans %}

    {% trans "Training Assessment #" %} {{ training_num_current }} of {{ training_num_available }}

    {{ training_essay|linebreaks }}
      {% for criterion in training_rubric.criteria %}
    1. {{ criterion.prompt }} * ({% trans "Required" %})

      {% trans "Selected Options Agree" %}

      {% trans "The option you selected is the option that the instructor selected." %}

      {% trans "Selected Options Differ" %}

      {% trans "The option you selected is not the option that the instructor selected." %}

        {% for option in criterion.options %}
      1. {% endfor %}
    2. {% endfor %}

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

    {% endblock %}
  • {% endspaceless %}