# HG changeset patch # User Parth buch # Date 1320033857 -19800 # Node ID 6f06b1457e553973c32a942b65526da6a0937c26 # Parent 1a8ed55cc33599cc1f6c89b63207e9a5eb0482b7 added the submitted dates to filters diff -r 1a8ed55cc335 -r 6f06b1457e55 project/scipycon/talk/admin.py --- a/project/scipycon/talk/admin.py Mon Oct 31 09:31:04 2011 +0530 +++ b/project/scipycon/talk/admin.py Mon Oct 31 09:34:17 2011 +0530 @@ -9,7 +9,7 @@ class TalkAdmin(admin.ModelAdmin): list_display = ('title', 'speaker', 'topic', 'duration', 'audience', 'approved', 'submitted') - list_filter = ('approved', 'audience', 'topic', 'speaker') + list_filter = ('approved', 'submitted', 'audience', 'topic', 'speaker') search_fields = ('slug', 'title', 'abstract') prepopulate_from = {'slug': ('title',)} fieldsets = (