{% extends 'base.html' %} {% load staticfiles %} {% block navbar %} Ready for an exam, commander? {% endblock navbar %} {% 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
Get {{ submission_type }}
{{ submission_type.feedback_count }} / {{submission_type.submission_count}}
Your contribution: {% if tutor.feedback_list.all|length > 0 %} {{tutor.feedback_list.all|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/component/message_box.html" %}
{# The big table where the tutor can see what s/he actually did #}
{% for feedback in tutor.feedback_list.all %} {% endfor %}
Status Submission Type Score Modified
{% include "core/component/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 %}