Skip to content

Commit

Permalink
Merge pull request openedx#129 from edx/mushtaq/video-status-search
Browse files Browse the repository at this point in the history
Add status to video search in videos admin table.
  • Loading branch information
Mushtaq Ali authored Feb 27, 2018
2 parents 1dd5577 + 7d31a07 commit 5d178fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion edxval/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class VideoAdmin(admin.ModelAdmin): # pylint: disable=C0111
'id', 'edx_video_id', 'client_video_id', 'duration', 'created', 'status'
)
list_display_links = ('id', 'edx_video_id')
search_fields = ('id', 'edx_video_id', 'client_video_id')
search_fields = ('id', 'edx_video_id', 'client_video_id', 'status')
list_per_page = 50
admin_order_field = 'edx_video_id'
inlines = [CourseVideoInline, EncodedVideoInline]
Expand Down

0 comments on commit 5d178fa

Please sign in to comment.