views:

338

answers:

1

It gives you filter by staff status and superuser status, but what about groups?

+1  A: 

See http://stackoverflow.com/questions/471550/customizing-an-admin-form-in-django-while-also-using-autodiscover

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