{% extends "base_admin.html" %} {% load projecttags %} {% load bootstrap %} {% block scripts %} {{ block.super }} {% endblock %} {% block docready %} {{ block.super }} var table=$('#duplicates').DataTable( { paging: false, order: [[ 0, "asc" ], [1, "desc"], [4, "asc"]], rowGroup: {dataSrc: 0}, columnDefs: [ { "targets": [ 0 ], "visible": false } ] }); {% endblock %} {% block title %} {{ block.super }} - Duplicate Report for {{ assignment }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Hint: Use the Shift key for working with sub-ordered columns.

{% for key, file_list in assignment.duplicate_files %} {% for dupfile in file_list %} {% with dupfile.submissions.all.0 as submission %} {% endwith %} {% endfor %} {% endfor %}
Content Hash Last change Submission Assignment Course Authors Grading finished? Grading Notes
Case {{ forloop.parentloop.counter }} {{ submission.modified }} {% url 'teacher:opensubmit_submission_change' submission as suburl %} #{{submission}} (file preview) {{ submission.assignment }} {{ submission.assignment.course }} {{ submission.authors.all|join:", " }} {{ submission.grading_status_text }} {{ submission.grading_notes|default_if_none:""}}
{% endblock %}