It gives you filter by staff status and superuser status, but what about groups?
+1
A:
Essentially, you define a customized Admin class with the features you want.
Then unregister and register your revised Admin class.
admin.site.unregister(User)
admin.site.register(User, MyUserAdmin)
S.Lott
2009-05-19 02:15:36