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
This commit is contained in:
parent
d52db2d879
commit
9b98383175
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue