{% trans "Learn to Assess Responses" %}
{% if training_start %}
{# Translators: This string displays a date to the user, then tells them the time until that date. Example: "available August 13th, 2014 (in 5 days and 45 minutes)" #}
{% blocktrans with start_date=training_start|timezone:time_zone|date:"N j, Y H:i e" time_until=training_start|timeuntil %}available {{ start_date }} (in {{ time_until }}){% endblocktrans %}
{% elif training_due %}
{# Translators: This string displays a date to the user, then tells them the time until that date. Example: "due August 13th, 2014 (in 5 days and 45 minutes)" #}
{% blocktrans with due_date=training_due|timezone:time_zone|date:"N j, Y H:i e" time_until=training_due|timeuntil %}due {{ due_date }} (in {{ time_until }}){% endblocktrans %}
{% 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" %}
{% 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 %}