Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
fd0880ae
Commit
fd0880ae
authored
Nov 07, 2016
by
Clinton Blackburn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated SoftwareSecurePhotoVerificationAdmin to use raw ID for id_copy_id_photo_from field
parent
08c5a358
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
lms/djangoapps/verify_student/admin.py
+3
-5
No files found.
lms/djangoapps/verify_student/admin.py
View file @
fd0880ae
...
@@ -17,11 +17,9 @@ class SoftwareSecurePhotoVerificationAdmin(admin.ModelAdmin):
...
@@ -17,11 +17,9 @@ class SoftwareSecurePhotoVerificationAdmin(admin.ModelAdmin):
"""
"""
Admin for the SoftwareSecurePhotoVerification table.
Admin for the SoftwareSecurePhotoVerification table.
"""
"""
list_display
=
(
'id'
,
'user'
,
'status'
,
'receipt_id'
,
'submitted_at'
,
'updated_at'
)
list_display
=
(
'id'
,
'user'
,
'status'
,
'receipt_id'
,
'submitted_at'
,
'updated_at'
,)
raw_id_fields
=
(
'user'
,
'reviewing_user'
)
raw_id_fields
=
(
'user'
,
'reviewing_user'
,
'id_copy_id_photo_from'
,)
search_fields
=
(
search_fields
=
(
'receipt_id'
,
'user__username'
,)
'receipt_id'
,
'user__username'
)
class
VerificationStatusAdmin
(
admin
.
ModelAdmin
):
class
VerificationStatusAdmin
(
admin
.
ModelAdmin
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment