Fixed #16835 -- add groups to auth.user admin list_filter
This commit is contained in:
parent
2b1ae4dbd2
commit
69ff1b7390
|
@ -54,7 +54,7 @@ class UserAdmin(admin.ModelAdmin):
|
||||||
add_form = UserCreationForm
|
add_form = UserCreationForm
|
||||||
change_password_form = AdminPasswordChangeForm
|
change_password_form = AdminPasswordChangeForm
|
||||||
list_display = ('username', 'email', 'first_name', 'last_name', 'is_staff')
|
list_display = ('username', 'email', 'first_name', 'last_name', 'is_staff')
|
||||||
list_filter = ('is_staff', 'is_superuser', 'is_active')
|
list_filter = ('is_staff', 'is_superuser', 'is_active', 'groups')
|
||||||
search_fields = ('username', 'first_name', 'last_name', 'email')
|
search_fields = ('username', 'first_name', 'last_name', 'email')
|
||||||
ordering = ('username',)
|
ordering = ('username',)
|
||||||
filter_horizontal = ('user_permissions',)
|
filter_horizontal = ('user_permissions',)
|
||||||
|
|
|
@ -116,6 +116,8 @@ Django 1.5 also includes several smaller improvements worth noting:
|
||||||
* The :ref:`receiver <connecting-receiver-functions>` decorator is now able to
|
* The :ref:`receiver <connecting-receiver-functions>` decorator is now able to
|
||||||
connect to more than one signal by supplying a list of signals.
|
connect to more than one signal by supplying a list of signals.
|
||||||
|
|
||||||
|
* In the admin, you can now filter users by groups which they are members of.
|
||||||
|
|
||||||
* :meth:`QuerySet.bulk_create()
|
* :meth:`QuerySet.bulk_create()
|
||||||
<django.db.models.query.QuerySet.bulk_create>` now has a batch_size
|
<django.db.models.query.QuerySet.bulk_create>` now has a batch_size
|
||||||
argument. By default the batch_size is unlimited except for SQLite where
|
argument. By default the batch_size is unlimited except for SQLite where
|
||||||
|
|
Loading…
Reference in New Issue