{% extends 'base.html' %} {% load staticfiles %} {% block navbar %} Student Exam View {% endblock navbar %} {% block body_block %}
Submission Type | Score | {% for submission in student.submissions.all %} | |
---|---|---|---|
{% 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 |