{% trans "View the file associated with this submission." %}
{% trans "View the file associated with this submission." %}
</a>
</a>
{% if show_warning %}
{% if show_warning %}
<pclass="submission_file_warning">{% trans "(Caution: This file was uploaded by another course learner and has not been verified, screened, approved, reviewed or endorsed by edX. If you decide to access it, you do so at your own risk.)" %}</p>
<pclass="submission_file_warning">{% trans "(Caution: This file was uploaded by another course learner and has not been verified, screened, approved, reviewed, or endorsed by edX. If you decide to access it, you do so at your own risk.)" %}</p>
{% blocktrans with removed_datetime=workflow_cancellation.cancelled_at|utc|date:"N j, Y H:i e" removed_by_username=workflow_cancellation.cancelled_by %}
{% blocktrans with removed_datetime=workflow_cancellation.cancelled_at|utc|date:"N j, Y H:i e" removed_by_username=workflow_cancellation.cancelled_by %}
Your submission has been cancelled by {{ removed_by_username }} on {{ removed_datetime }}
Your submission has been cancelled by {{ removed_by_username }} on {{ removed_datetime }}
{% endblocktrans %}
{% endblocktrans %}
<br>
</p>
<p>
<!-- Comments: Reason for Cancellation-->
<!-- Comments: Reason for Cancellation-->
{% blocktrans with comments=workflow_cancellation.comments %}
{% blocktrans with comments=workflow_cancellation.comments %}
Comments: {{ comments }}
Comments: {{ comments }}
{% endblocktrans %}
{% endblocktrans %}
</p>
</p>
</div>
</div>
<divclass="step__content">
<articleclass="submission__answer__display">
<h3class="submission__answer__display__title">{% trans "Your Response" %}</h3>
{% trans "The file associated with this response." %}
{% trans "The file associated with this response." %}
</a>
</a>
<span>{% trans "Caution: This file was uploaded by another course learner and has not been verified, screened, approved, reviewed or endorsed by edX. If you decide to access it, you do so at your own risk." %}</span>
<span>{% trans "Caution: This file was uploaded by another course learner and has not been verified, screened, approved, reviewed, or endorsed by edX. If you decide to access it, you do so at your own risk." %}</span>
<span>{% trans "Peer Assessments Completed by This Learner" %}</span>
<span>{% trans "Peer Assessments Completed by This Learner" %}</span>
</h2>
</h2>
<divclass="ui-toggle-visibility__content">
<divclass="ui-toggle-visibility__content">
{% if submitted_assessments %}
{% for assessment in submitted_assessments %}
{% for assessment in submitted_assessments %}
{% with peer_num=forloop.counter %}
{% with peer_num=forloop.counter %}
<h4class="title--sub">{% trans "Assessment" %} {{ peer_num }}:</h4>
<h4class="title--sub">{% trans "Assessment" %} {{ peer_num }}:</h4>
...
@@ -136,6 +141,9 @@
...
@@ -136,6 +141,9 @@
</div>
</div>
{% endwith %}
{% endwith %}
{% endfor %}
{% endfor %}
{% else %}
<p>{% trans "This learner has not completed any peer assessments." %}</p>
{% endif %}
</div>
</div>
</div>
</div>
</div>
</div>
...
@@ -225,15 +233,17 @@
...
@@ -225,15 +233,17 @@
</h2>
</h2>
<divclass="ui-toggle-visibility__content">
<divclass="ui-toggle-visibility__content">
{% if workflow_status == "done" %}
{% if workflow_status == "done" %}
<p>
{% with points_earned_string=score.points_earned|stringformat:"s" points_possible_string=score.points_possible|stringformat:"s" %}
{% with points_earned_string=score.points_earned|stringformat:"s" points_possible_string=score.points_possible|stringformat:"s" %}
{% blocktrans with points_earned='<spanclass="grade__value__earned">'|safe|add:points_earned_string|add:'</span>'|safe points_possible='<spanclass="grade__value__potential">'|safe|add:points_possible_string|add:'</span>'|safe %}
{% blocktrans with points_earned='<spanclass="grade__value__earned">'|safe|add:points_earned_string|add:'</span>'|safe points_possible='<spanclass="grade__value__potential">'|safe|add:points_possible_string|add:'</span>'|safe %}
Final grade: {{ points_earned }} out of {{ points_possible }}
Final grade: {{ points_earned }} out of {{ points_possible }}
{% endblocktrans %}
{% endblocktrans %}
{% endwith %}
{% endwith %}
</p>
{% elif workflow_status == "waiting" %}
{% elif workflow_status == "waiting" %}
<p>{% trans "The submission is waiting for assessments." %}</p>
<p>{% trans "The submission is waiting for assessments." %}</p>
{% elif workflow_status == "cancelled" %}
{% elif workflow_status == "cancelled" %}
<p>{% trans "The learner's submission has been removed from peer assessment. The learner receives a grade of zero unless you reset the learner's attempts for the problem to allow them to resubmit a response." %}</p>
<p>{% trans "The learner's submission has been removed from peer assessment. The learner receives a grade of zero unless you delete the learner's state for the problem to allow them to resubmit a response." %}</p>
{% elif workflow_status == None %}
{% elif workflow_status == None %}
<p>{% trans "The problem has not been started." %}</p>
<p>{% trans "The problem has not been started." %}</p>