Opened 15 years ago

Closed 15 years ago

#10493 closed (wontfix)

admin interface doesn't list members of a group

Reported by: Dave Brondsema Owned by: nobody
Component: contrib.auth Version: 1.0
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

There's no way in the admin interface provided by contrib.auth to see a list of the current members of a given group. You have to go through every single user and look to see if they are in the group.

One easy solution (which I've already done for myself locally) is in contrib/auth/admin.py in UserAdmin, add 'groups' to list_filter. As long as there is 2+ groups, you can then filter your users based on group membership.

Another option would be to for the GroupManager to have an inline select box for available & chosen users, like it has for permissions.

Change History (1)

comment:1 by Alex Gaynor, 15 years ago

Resolution: wontfix
Status: newclosed

Marking as wonfix, it is now very easy for you to overide the UserAdmin in your own code.

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