added the submitted date to admin panel 2011
authorParth buch <parth.buch.115@gmail.com>
Mon, 31 Oct 2011 09:31:04 +0530
branch2011
changeset 441 1a8ed55cc335
parent 440 04c3084c412b
child 442 6f06b1457e55
added the submitted date to admin panel
project/scipycon/talk/admin.py
--- a/project/scipycon/talk/admin.py	Mon Oct 31 09:25:37 2011 +0530
+++ b/project/scipycon/talk/admin.py	Mon Oct 31 09:31:04 2011 +0530
@@ -8,7 +8,7 @@
 from .models import Talk
 
 class TalkAdmin(admin.ModelAdmin):
-    list_display = ('title', 'speaker', 'topic', 'duration', 'audience', 'approved')
+    list_display = ('title', 'speaker', 'topic', 'duration', 'audience', 'approved', 'submitted')
     list_filter = ('approved', 'audience', 'topic', 'speaker')
     search_fields = ('slug', 'title', 'abstract')
     prepopulate_from = {'slug': ('title',)}