{% extends 'base.html' %} {% load staticfiles %} {% block nav_title %} Ready for an exam, commander? {% endblock nav_title %} {% block body_block %}
{# This is a control panel where new work can be requested #}

Overview

{% for submission_type in submission_type_list %} {% endfor %}
Name Progress
{{ submission_type }} {{ submission_type.submissions__feedback_list__count }} / {{submission_type.submissions__count}} Get
Your contribution: {% if feedback_list|length > 0 %} {{feedback_list|length}} {% else %} None. Sad. {% endif %}
{# This is where all the messages pop up #} {% include "core/message_box.html" %}
{# The big table where the tutor can see what s/he actually did #}
{% for feedback in feedback_list %} {% endfor %}
Submission Type Score
{{ feedback.of_submission.type }} {{ feedback.score }} / {{feedback.of_submission.type.full_score}} {% if feedback.final %} View {% else %} Edit Delete {% endif %}
{% endblock body_block %}