{% 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 #}
|
Name |
Progress |
|
{% for submission_type in submission_type_list %}
Get |
{{ submission_type }} |
|
{{ submission_type.feedback_count }} / {{submission_type.submission_count}} |
{% endfor %}
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 %}
Task |
Tutor |
|
{% for feedback in feedback_open_list %}
{{ feedback.of_submission.type }} |
{{ feedback.of_tutor }} |
Assign |
{% endfor %}
{% 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 #}
Status |
Submission Type |
Score |
Modified |
|
{% for feedback in tutor.feedback_list.all %}
{% 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 %}
|
{% endfor %}
{% endblock body_block %}
{% block script_block %}
{% endblock script_block %}