Changeset 7651
- Timestamp:
- 06/15/08 22:47:38 (1 year ago)
- Files:
-
- django/trunk/django/contrib/flatpages/models.py (modified) (1 diff)
- django/trunk/django/contrib/redirects/models.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/contrib/flatpages/models.py
r7382 r7651 27 27 (_('Advanced options'), {'classes': 'collapse', 'fields': ('enable_comments', 'registration_required', 'template_name')}), 28 28 ) 29 list_filter = ('sites',) 29 list_display = ('url', 'title') 30 list_filter = ('sites', 'enable_comments', 'registration_required') 30 31 search_fields = ('url', 'title') 31 32 django/trunk/django/contrib/redirects/models.py
r5803 r7651 18 18 19 19 class Admin: 20 list_display = ('old_path', 'new_path') 20 21 list_filter = ('site',) 21 22 search_fields = ('old_path', 'new_path')
