{% extends 'base.html' %} {% load staticfiles %} {% block nav_title %} Ready for an exam, captain? {% endblock nav_title %} {% block body_block %}
{# This just gives an overview about what has been done already #}
Progress
{% for submission_type in submission_type_list %} {% endfor %}
Name Progress
{{ submission_type }} {{ submission_type.feedback_count }} / {{submission_type.submission_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}}
{% if feedback_list_manual|length == 0 %}
There is no feedback, yet. Maybe you have to kick some ass?
{% elif feedback_list_manual|length == 1 %}
Well, one is better than nothing
{% else %}
So far {{feedback_list_manual|length}} contributions were provided
{% endif %}
{% for feedback in feedback_list_manual %} {% endfor %}
Status Submission Type Student Score Tutor Modified
{% include "core/feedback_badge.html" %} {{ feedback.of_submission.type }} {{ feedback.of_submission.student }} {{ feedback.score }} / {{ feedback.of_submission.type.full_score }} {{ feedback.of_tutor}} {{ feedback.modified | date:"m/d/y H:i"}} View Delete
{# This is card for empty feedback for the sake of completeness #} {% include "core/feedback_list.html" with expanded="show" header="Did not compile feedback" unique="2" feedback_list=feedback_list_did_not_compile %} {% include "core/feedback_list.html" with expanded="show" header="Could not link feedback" unique="3" feedback_list=feedback_list_could_not_link %} {% include "core/feedback_list.html" with expanded="hide" header="Empty feedback" unique="1" feedback_list=feedback_list_empty %}
{% endblock body_block %} {% block script_block %} {% endblock script_block %}