Index: django/contrib/flatpages/models.py
===================================================================
--- django/contrib/flatpages/models.py	(revision 7555)
+++ django/contrib/flatpages/models.py	(working copy)
@@ -26,7 +26,8 @@
             (None, {'fields': ('url', 'title', 'content', 'sites')}),
             (_('Advanced options'), {'classes': 'collapse', 'fields': ('enable_comments', 'registration_required', 'template_name')}),
         )
-        list_filter = ('sites',)
+        list_display = ('url', 'title')
+        list_filter = ('sites', 'enable_comments', 'registration_required')
         search_fields = ('url', 'title')
 
     def __unicode__(self):
Index: django/contrib/redirects/models.py
===================================================================
--- django/contrib/redirects/models.py	(revision 7555)
+++ django/contrib/redirects/models.py	(working copy)
@@ -17,6 +17,7 @@
         ordering = ('old_path',)
 
     class Admin:
+        list_display = ('old_path', 'new_path')
         list_filter = ('site',)
         search_fields = ('old_path', 'new_path')
