{% load i18n %} {% spaceless %}
  • {% if score %} {% trans "Your Grade" %}: {% with points_earned_string=score.points_earned|stringformat:"s" points_possible_string=score.points_possible|stringformat:"s" %} {% blocktrans with points_earned=''|safe|add:points_earned_string|add:''|safe points_possible=''|safe|add:points_possible_string|add:''|safe %} {{ points_earned }} out of {{ points_possible }} {% endblocktrans %} {% endwith %} {% else %} {% trans "Your Grade" %} {% endif %}

    {% trans "Your Response" as translated_label %} {% include "legacy/oa_submission_answer.html" with answer=student_submission.answer answer_text_label=translated_label %} {% trans "Your Upload" as translated_header %} {% include "legacy/oa_uploaded_file.html" with file_upload_type=file_upload_type file_urls=file_urls header=translated_header class_prefix="submission__answer" including_template="grade_complete" xblock_id=xblock_id %}
    {% trans "Assessments of Your Response" %}

    {% trans "Status" %}
    {{ score_explanation }}
      {% for criterion in grade_details.criteria %} {% with criterion_num=forloop.counter %}
    1. {% if criterion.total_value > 0 %} {% trans "Overall Grade" %} {{ criterion.median_score }} out of {{ criterion.total_value }} {% trans "Points" %} {% endif %}
        {% for assessment in criterion.assessments %}
      • {% if criterion.options %} {% include "legacy/grade/oa_assessment_title.html" with assessment=assessment %} {% endif %} {% include "legacy/grade/oa_assessment_feedback.html" with title=assessment.feedback_title assessment=assessment %}
      • {% endfor %}
    2. {% endwith %} {% endfor %} {% if grade_details.additional_feedback %} {% endif %}
    {% if peer_assessments %} {% endif %}
  • {% endspaceless %}