{% block button %}
{% block title %}
{% trans "This step's status" %}:
{% with training_num_completed_string=training_num_completed|stringformat:"s" training_num_available_string=training_num_available|stringformat:"s" %}
{% blocktrans with training_completed_num=''|safe|add:training_num_completed_string|add:''|safe training_available_num=''|safe|add:training_num_available_string|add:''|safe %}
In Progress ({{ training_completed_num }} of {{ training_available_num }})
{% endblocktrans %}
{% endwith %}
{% endblock %}
{% block body %}
{% trans "Learning to Assess Responses" %}
{% trans "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." %}
{% trans "Learning to Assess Responses" %}
{% trans "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." %}
{% with training_num_current=training_num_current training_num_available=training_num_available %}
{% with training_num_current_string=training_num_current|stringformat:"s" training_num_available_string=training_num_available|stringformat:"s" %}
{% blocktrans with current_progress_num=''|safe|add:training_num_current_string|add:''|safe num_to_complete=''|safe|add:training_num_available_string|add:''|safe %}
Training Assessment # {{ current_progress_num }} of {{ num_to_complete }}
{% endblocktrans %}
{% endwith %}
{% endwith %}
{% trans "The response to the question above:" as translated_label %}
{% include "openassessmentblock/oa_submission_answer.html" with answer=training_essay.answer answer_text_label=translated_label %}