{% load i18n %} {% spaceless %}
  • {% comment %}

    {% 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 %}

    {% endcomment %}
    Submission Results

    Submission date: {{student_submission.submitted_at}}

    {% trans "Graded" %}
    {% comment %}
    {{ score_explanation }}
    {% endcomment %}
    {% include "openassessmentblock/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 %}
    Feedback Details
    {% if grade_details.additional_feedback %}
    Reviewer Note
      {% for feedback in grade_details.additional_feedback %} {% endfor %}
    {% endif %}
      {% 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 }} {% for assessment in criterion.assessments %} {% include "openassessmentblock/grade/oa_assessment_title.html" with assessment=assessment %} {% endfor %} {% endif %}
    2. {% endwith %} {% endfor %}
  • {% endspaceless %}