{% extends "base.html" %} {% block nav_title %} Student Exam View {% endblock nav_title %} {% block body_block %} {% with submission.feedback as feedback %}
Student Submission
  • Submission Type: {{ submission.type }}
  • Student: {{ submission.student }}
  • {% if feedback and is_reviewer %}
  • Status: {% include "core/feedback_badge.html" %} Only visible to reviewer
  • Tutor: {{ feedback.of_tutor }} Only visible to reviewer
  • {% endif %}
  • Score: {% if feedback and feedback.status == feedback.ACCEPTED %} {{ feedback.score }} / {{submission.type.full_score}} {% elif feedback and is_reviewer %} {{ feedback.score }} / {{submission.type.full_score}} Only visible to reviewer {% else %} No Feedback {% endif %}
Your submission
{{submission.text}}
{% if feedback %} {% if feedback.status == feedback.ACCEPTED or is_reviewer %}
Our feedback {% if is_reviewer %} Only visible to reviewer {% endif %}
{{ feedback.text }}
{% endif %} {% endif %}
{% endwith %} {% endblock body_block %} {% block script_block %} {% endblock script_block %}