Skip to content

Commit

Permalink
Merge pull request #348 from CTPUG/filter-tracks
Browse files Browse the repository at this point in the history
Allow filtering talks by track in the admin
  • Loading branch information
stefanor committed Feb 9, 2017
2 parents a119a77 + 3b5f492 commit c305339
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wafer/talks/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ class TalkAdmin(CompareVersionAdmin, admin.ModelAdmin):
'get_corresponding_author_contact', 'talk_type',
'get_in_schedule', 'has_url', 'status')
list_editable = ('status',)
list_filter = ('status', 'talk_type', ScheduleListFilter, DateModifiedFilter)
list_filter = ('status', 'talk_type', 'track', ScheduleListFilter,
DateModifiedFilter)
exclude = ('kv',)

inlines = [
Expand Down

0 comments on commit c305339

Please sign in to comment.