diff gpp/comments/admin.py @ 13:777451a98f9d

Shoutbox work: shouts now have absolute URLs. Shouts can now be flagged as abuse. Minor tweak to breadcrumbs css. Added flag date to comments admin.
author Brian Neal <bgneal@gmail.com>
date Thu, 16 Apr 2009 02:00:17 +0000
parents dbd703f7d63a
children 91a01b8b5885
line wrap: on
line diff
--- a/gpp/comments/admin.py	Wed Apr 15 01:13:17 2009 +0000
+++ b/gpp/comments/admin.py	Thu Apr 16 02:00:17 2009 +0000
@@ -25,7 +25,7 @@
     raw_id_fields = ('user', 'content_type')
 
 class CommentFlagAdmin(admin.ModelAdmin):
-    list_display = ('__unicode__', 'get_comment_url')
+    list_display = ('__unicode__', 'flag_date', 'get_comment_url')
 
 admin.site.register(Comment, CommentAdmin)
 admin.site.register(CommentFlag, CommentFlagAdmin)