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

Hello {{ student.student }}

{% for submission in submission_list %} {% endfor %}
Submission Type Score
{% if submission.seen %} Seen {% endif %} {{ submission.type }} {% with submission.feedback_list.all|first as feedback %} {% if feedback.final %} {{ feedback.score}} / {{submission.type.full_score}} {% else %} No Feedback {% endif %} {% endwith %} View
{% endblock body_block %}