Django

Code

Show
Ignore:
Timestamp:
06/15/08 22:47:38 (5 months ago)
Author:
adrian
Message:

Fixed #7329 -- Added list_display Admin options to FlatPage? and Redirect models. Also changed list_filter for FlatPage?. Thanks for the patch, benspaulding

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/contrib/flatpages/models.py

    r7382 r7651  
    2727            (_('Advanced options'), {'classes': 'collapse', 'fields': ('enable_comments', 'registration_required', 'template_name')}), 
    2828        ) 
    29         list_filter = ('sites',) 
     29        list_display = ('url', 'title') 
     30        list_filter = ('sites', 'enable_comments', 'registration_required') 
    3031        search_fields = ('url', 'title') 
    3132