{% trans "Learner Response" %}
{% if workflow_cancellation %}
{% blocktrans with removed_by_username=workflow_cancellation.cancelled_by removed_datetime=workflow_cancellation.created_at|utc|date:"N j, Y H:i e" %}
Learner submission removed by {{ removed_by_username }} on {{ removed_datetime }}
{% endblocktrans %}
{% blocktrans with comments=workflow_cancellation.comments %}
Comments: {{ comments }}
{% endblocktrans %}
{% else %}
{% include "openassessmentblock/oa_submission_answer.html" with answer=submission.answer answer_text_label="The learner's response to the question above:" %}
{% endif %}
{% if submission.file_url %}
{% trans "The file associated with this response." %}
{% 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." %}
{% endif %}
{% if not workflow_cancellation %}
{% trans "Remove submission from peer grading" %}
{% endif %}
{% if peer_assessments %}
{% trans "Peer Assessments for This Learner" %}
{% for assessment in peer_assessments %}
{% with peer_num=forloop.counter %}
{% trans "Peer" %} {{ peer_num }}:
{% trans "Criterion" %} |
{% trans "Selected Option" %} |
{% trans "Feedback" %} |
{% trans "Points" %} |
{% trans "Points Possible" %} |
{% for criterion in rubric_criteria %}
{% for part in assessment.parts %}
{% if part.option.criterion.name == criterion.name %}
{{ criterion.label }} |
{{ part.option.label }} |
{{ part.feedback }} |
{{ part.option.points }} |
{{ criterion.total_value }} |
{% endif %}
{% endfor %}
{% endfor %}
{% trans "Overall Feedback" %}
{{ assessment.feedback|linebreaks }}
{% endwith %}
{% endfor %}
{% endif %}
{% if submitted_assessments %}
{% trans "Peer Assessments Completed by This Learner" %}
{% for assessment in submitted_assessments %}
{% with peer_num=forloop.counter %}
{% trans "Assessment" %} {{ peer_num }}:
{% trans "Criterion" %} |
{% trans "Selected Option" %} |
{% trans "Feedback" %} |
{% trans "Points" %} |
{% trans "Points Possible" %} |
{% for criterion in rubric_criteria %}
{% for part in assessment.parts %}
{% if part.option.criterion.name == criterion.name %}
{{ criterion.label }} |
{{ part.option.label }} |
{{ part.feedback }} |
{{ part.option.points }} |
{{ criterion.total_value }} |
{% endif %}
{% endfor %}
{% endfor %}
{% trans "Overall Feedback" %}
{{ assessment.feedback|linebreaks }}
{% endwith %}
{% endfor %}
{% endif %}
{% if self_assessment %}
{% trans "Learner's Self Assessment" %}
{% trans "Criterion" %} |
{% trans "Selected Option" %} |
{% trans "Points" %} |
{% trans "Points Possible" %} |
{% for criterion in rubric_criteria %}
{% for part in self_assessment.parts %}
{% if part.option.criterion.name == criterion.name %}
{{ criterion.label }} |
{{ part.option.label }} |
{{ part.option.points }} |
{{ criterion.total_value }} |
{% endif %}
{% endfor %}
{% endfor %}
{% endif %}
{% if example_based_assessment %}
{% trans "Example-Based Assessment" %}
{% trans "Criterion" %} |
{% trans "Selected Option" %} |
{% trans "Points" %} |
{% trans "Points Possible" %} |
{% for criterion in rubric_criteria %}
{% for part in example_based_assessment.parts %}
{% if part.option.criterion.name == criterion.name %}
{{ criterion.label }} |
{{ part.option.label }} |
{{ part.option.points }} |
{{ criterion.total_value }} |
{% endif %}
{% endfor %}
{% endfor %}
{% endif %}
{% else %}
{% trans "A response was not found for this learner." %}
{% endif %}