added the submitted dates to filters 2011
authorParth buch <parth.buch.115@gmail.com>
Mon, 31 Oct 2011 09:34:17 +0530
branch2011
changeset 442 6f06b1457e55
parent 441 1a8ed55cc335
child 443 7fe2b15ee82f
added the submitted dates to filters
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 = (