{% extends 'base.html' %} {% load staticfiles %} {% block nav_title %} Ready for an exam, captain? {% endblock nav_title %} {% block body_block %}
{# This is a control panel where new work can be requested #}
Progress
{% for submission_type in submission_type_list %} {% endfor %}
Name Progress
{{ submission_type }} {{ submission_type.submissions__feedback_list__count }} / {{submission_type.submissions__count}}
{# Only a list of tutors. Currently no controls available #}
Tutor overview
{% for tutor in tutor_list %} {% endfor %}
Tutor # of feedbacks
{{tutor.username}} {{tutor.corrected_submissions__count}}
{% for feedback in feedback_list %} {% endfor %}
Submission Type Student Score Tutor
{% if feedback.final %} Final {% endif %} {{ feedback.of_submission.type }} {{ feedback.of_submission.student }} {{ feedback.score }} / {{ feedback.of_submission.type.full_score }} {{ feedback.of_tutor}} View Delete {% if not feedback.final %} Mark final {% else %} Undo {% endif %}
{% endif %} {% endblock body_block %}