The admin site is currently being entirely redone, and in the new system it will be very easy to make changes like this yourself without changing the django source code.
http://code.djangoproject.com/wiki/NewformsAdminBranch All you'd have to do to change the way the user list is displayed is to create a custom AdminSite class, create a custom ModelAdmin class that sublasses the one currently being used for the User model, add in the list_display line, and register your dubclassed modeladmin with your custom adminsite. If you wanted, you could change the list_filter as well to allow you to filter by is_active. It may sound kind of complicated, but once you do it it's like 15 lines of code. Newforms-admin is separated from the main django code, so you'll have to check it out of svn manually if you want to use it. It's set to be merged in and made a part of the main django code within the next couple of weeks. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~----------~----~----~----~------~----~------~--~---
