{% trans "Student 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" %}
Student 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 student's response to the question above:" %}
{% endif %}
{% if submission.image_url %}

{% endif %}
{% if not workflow_cancellation %}
{% trans "Remove submission from peer grading" %}
{% endif %}
{% if peer_assessments %}
{% trans "Peer Assessments for This Student" %}
{% 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 Student" %}
{% 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 "Student'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 "Couldn't find a response for this student." %}
{% endif %}