From 9b983831752d61b340bc67b0be5d2c8c5dbfcb18 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 26 Jul 2005 23:24:55 +0000 Subject: [PATCH] Fixed #187 -- Made admin view handle one-to-one relationships in which the parent relationship doesn't have the 'admin' parameter set. Thanks, Moof git-svn-id: http://code.djangoproject.com/svn/django/trunk@331 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/views/admin/main.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/django/views/admin/main.py b/django/views/admin/main.py index dbefc1c569dc7..c24e17b3d1d16 100644 --- a/django/views/admin/main.py +++ b/django/views/admin/main.py @@ -79,6 +79,9 @@ def change_list(request, app_label, module_name): if opts.one_to_one_field: lookup_mod = opts.one_to_one_field.rel.to.get_model_module() lookup_opts = lookup_mod.Klass._meta + # If lookup_opts doesn't have admin set, give it the default meta.Admin(). + if not lookup_opts.admin: + lookup_opts.admin = meta.Admin() # Get search parameters from the query string. try: