Opened 16 years ago

Closed 16 years ago

#7329 closed (fixed)

Make flatpage and redirect change pages more manageable by adding list_display

Reported by: Ben Spaulding Owned by: nobody
Component: contrib.admin Version: dev
Severity: Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Managing large numbers of flatpages or redirects is difficult because the change-page column displays the __unicode__ representation of the objects, which is difficult to scan.

I suggest adding the list_display option to the models’ Admin class as shown in the attached file.

Further, managing large numbers of flatpages would be easier if the enable_comments and registration_required field names were added to the list_filter option of the flatpage model’s Admin class.

Attachments (1)

admin_classes.diff (1.1 KB ) - added by Ben Spaulding 16 years ago.
Patch to add list_display option to flatpage and redirect Admin classes.

Download all attachments as: .zip

Change History (3)

by Ben Spaulding, 16 years ago

Attachment: admin_classes.diff added

Patch to add list_display option to flatpage and redirect Admin classes.

comment:1 by Simon Greenhill, 16 years ago

Triage Stage: UnreviewedReady for checkin

comment:2 by Adrian Holovaty, 16 years ago

Resolution: fixed
Status: newclosed

(In [7651]) Fixed #7329 -- Added list_display Admin options to FlatPage and Redirect models. Also changed list_filter for FlatPage. Thanks for the patch, benspaulding

Note: See TracTickets for help on using tickets.
Back to Top