{% extends 'base.html' %} {% load staticfiles %} {% block navbar %} Student Exam View {% endblock navbar %} {% block body_block %}

Submissions of {{ student.name }}

{% for submission in student.submissions.all %} {% endfor %}
Submission Type Score
{% if submission.seen_by_student %} Seen {% endif %} {{ submission.type }} {% with submission.feedback as feedback %} {% if feedback and feedback.status == feedback.ACCEPTED %} {{ feedback.score }} / {{submission.type.full_score}} {% else %} No Feedback {% endif %} {% endwith %} View
{% endblock body_block %}