Opened 16 years ago
Closed 16 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.
Marking as wonfix, it is now very easy for you to overide the UserAdmin in your own code.