diff options
| author | Jacob Kaplan-Moss <jacob@jacobian.org> | 2009-04-01 14:14:20 +0000 |
|---|---|---|
| committer | Jacob Kaplan-Moss <jacob@jacobian.org> | 2009-04-01 14:14:20 +0000 |
| commit | ee17cabba0e1f2cbb85b2044eda43108e3f4371c (patch) | |
| tree | fa5c3ade8c85aa0ca7cec09f9262646ab36c31a5 /tests/regressiontests/admin_views/customadmin.py | |
| parent | a2dec37c413cc1b9fd205047e15602e4bc41de1f (diff) | |
Fixed #9969: choices with options groups (added in [7977]) now work correctly in the admin with list_display and list_filter. Thanks, ramiro.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10318 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/admin_views/customadmin.py')
| -rw-r--r-- | tests/regressiontests/admin_views/customadmin.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/regressiontests/admin_views/customadmin.py b/tests/regressiontests/admin_views/customadmin.py index c812eab98b..70e87ebcfe 100644 --- a/tests/regressiontests/admin_views/customadmin.py +++ b/tests/regressiontests/admin_views/customadmin.py @@ -28,3 +28,4 @@ site = Admin2(name="admin2") site.register(models.Article, models.ArticleAdmin) site.register(models.Section, inlines=[models.ArticleInline]) site.register(models.Thing, models.ThingAdmin) +site.register(models.Fabric, models.FabricAdmin) |
