{# This just gives an overview about what has been done already #}
Name |
Progress |
{% for submission_type in submission_type_list %}
{{ submission_type }} |
{{ submission_type.feedback_count }} / {{submission_type.submission_count}} |
{% endfor %}
{# Only a list of tutors. Currently no controls available #}
Tutor |
# of feedbacks |
{% for tutor in tutor_list %}
{{tutor.username}} |
{{tutor.corrected_submissions__count}} |
{% endfor %}
{% if feedback_list_manual|length == 0 %}
{% elif feedback_list_manual|length == 1 %}
{% else %}
{% endif %}
Status |
Submission Type |
Student |
Score |
Tutor |
|
{% for feedback in feedback_list_manual %}
{% include "core/feedback_badge.html" %}
|
{{ feedback.of_submission.type }} |
{{ feedback.of_submission.student }} |
{{ feedback.score }} / {{ feedback.of_submission.type.full_score }} |
{{ feedback.of_tutor}} |
View
Delete
|
{% endfor %}
{# 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 %}