summaryrefslogtreecommitdiff
path: root/tests/regressiontests/admin_views/customadmin.py
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2009-04-01 14:14:20 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2009-04-01 14:14:20 +0000
commitee17cabba0e1f2cbb85b2044eda43108e3f4371c (patch)
treefa5c3ade8c85aa0ca7cec09f9262646ab36c31a5 /tests/regressiontests/admin_views/customadmin.py
parenta2dec37c413cc1b9fd205047e15602e4bc41de1f (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.py1
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)