Fixed #16835 -- add groups to auth.user admin list_filter

This commit is contained in:
Dan Loewenherz 2012-09-07 12:42:06 -04:00 committed by Preston Holmes
parent 2b1ae4dbd2
commit 69ff1b7390
2 changed files with 3 additions and 1 deletions

View file

@ -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
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()
<django.db.models.query.QuerySet.bulk_create>` now has a batch_size
argument. By default the batch_size is unlimited except for SQLite where