Skip to content

Commit

Permalink
Fixed #187 -- Made admin view handle one-to-one relationships in whic…
Browse files Browse the repository at this point in the history
…h 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
  • Loading branch information
adrianholovaty committed Jul 26, 2005
1 parent d52db2d commit 9b98383
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions django/views/admin/main.py
Expand Up @@ -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:
Expand Down

0 comments on commit 9b98383

Please sign in to comment.