diff options
| author | Jacob Kaplan-Moss <jacob@jacobian.org> | 2009-03-23 20:22:56 +0000 |
|---|---|---|
| committer | Jacob Kaplan-Moss <jacob@jacobian.org> | 2009-03-23 20:22:56 +0000 |
| commit | 44f3080226888eb709cc6e027321647964ebe64e (patch) | |
| tree | 879d62de3f7c3ce91956a1b26d4f0f6dd41bc1a8 /tests/regressiontests/admin_registration | |
| parent | 4e2533436ef08ce81516e4cfd47ccbb1dddac5f8 (diff) | |
Fixed #10505: added support for bulk admin actions, including a globally-available "delete selected" action. See the documentation for details.
This work started life as Brian Beck's "django-batchadmin." It was rewritten for inclusion in Django by Alex Gaynor, Jannis Leidel (jezdez), and Martin Mahner (bartTC). Thanks, guys!
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10121 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/admin_registration')
| -rw-r--r-- | tests/regressiontests/admin_registration/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/admin_registration/models.py b/tests/regressiontests/admin_registration/models.py index fdfa3691b8..35cf8afce8 100644 --- a/tests/regressiontests/admin_registration/models.py +++ b/tests/regressiontests/admin_registration/models.py @@ -49,7 +49,7 @@ AlreadyRegistered: The model Person is already registered >>> site._registry[Person].search_fields ['name'] >>> site._registry[Person].list_display -['__str__'] +['action_checkbox', '__str__'] >>> site._registry[Person].save_on_top True |
