Commit c512ca75 by Chris Dodge

reorder filter list

parent dbbc16fa
...@@ -110,7 +110,7 @@ class ProctoredExamSoftwareSecureReviewAdmin(admin.ModelAdmin): ...@@ -110,7 +110,7 @@ class ProctoredExamSoftwareSecureReviewAdmin(admin.ModelAdmin):
""" """
readonly_fields = [video_url_for_review, 'attempt_code', 'exam', 'student', 'reviewed_by', 'modified'] readonly_fields = [video_url_for_review, 'attempt_code', 'exam', 'student', 'reviewed_by', 'modified']
list_filter = ['review_status', 'exam__course_id', 'exam__exam_name', ReviewListFilter] list_filter = [ReviewListFilter, 'review_status', 'exam__course_id', 'exam__exam_name']
list_select_related = True list_select_related = True
search_fields = ['student__username', 'attempt_code'] search_fields = ['student__username', 'attempt_code']
form = ProctoredExamSoftwareSecureReviewForm form = ProctoredExamSoftwareSecureReviewForm
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment