Skip to content
Snippets Groups Projects
Unverified Commit 8c205e5c authored by alangsto's avatar alangsto Committed by GitHub
Browse files

fix: add created and modified fields to integrity signature admin (#27882)

MST-861. The Django admin page for IntegritySignature only displays
the user and course_key for a signature. This adds the created and modified
fields, and will order signatures by the modified field.
parent a284b970
No related branches found
Tags release-2021-06-08-13.48
No related merge requests found
......@@ -11,9 +11,10 @@ class IntegritySignatureAdmin(admin.ModelAdmin):
"""
Admin for the IntegritySignature Model
"""
list_display = ('user', 'course_key',)
readonly_fields = ('user', 'course_key',)
list_display = ('user', 'course_key', 'created', 'modified')
readonly_fields = ('user', 'course_key', 'created', 'modified')
search_fields = ('user__username', 'course_key',)
ordering = ['-modified']
class Meta:
model = IntegritySignature
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment