{% 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.feedback_count }} / {{submission_type.submission_count}} Get
Your contribution: {% if feedback_list|length > 0 %} {{feedback_list|length}} {% else %} None. Sad. {% endif %}
{# Open feedback will be displayed here #} {% if feedback_open_list %}

Open Feedback

{% for feedback in feedback_open_list %} {% endfor %}
Task Tutor
{{ feedback.of_submission.type }} {{ feedback.of_tutor }} Assign
{% 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 %}
Status Submission Type Score Modified
{% include "core/feedback_badge.html" %} {{ feedback.of_submission.type }} {{ feedback.score }} / {{feedback.of_submission.type.full_score}} {{ feedback.modified | date:"H:i"}} {% if feedback.status == feedback.ACCEPTED %} View {% else %} Edit {% endif %}
{% endblock body_block %} {% block script_block %} {% endblock script_block %}