Skip to content

Commit

Permalink
Fixed bug for OneToOneFields in the admin -- the manipulator_validato…
Browse files Browse the repository at this point in the history
…r_unique wasn't doing the correct lookup

git-svn-id: http://code.djangoproject.com/svn/django/trunk@1322 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Nov 21, 2005
1 parent b96f605 commit 7a80b2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
7 changes: 0 additions & 7 deletions django/contrib/admin/views/main.py
Expand Up @@ -79,13 +79,6 @@ def change_list(request, app_label, module_name):

lookup_mod, lookup_opts = mod, opts

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:
page_num = int(request.GET.get(PAGE_VAR, 0))
Expand Down
6 changes: 3 additions & 3 deletions django/core/meta/fields.py
Expand Up @@ -48,11 +48,11 @@ def manipulator_valid_rel_key(f, self, field_data, all_data):
def manipulator_validator_unique(f, opts, self, field_data, all_data):
"Validates that the value is unique for this field."
if f.rel and isinstance(f.rel, ManyToOne):
lookup_type = 'pk'
lookup_type = '%s__%s__exact' % (f.name, f.rel.get_related_field().name)
else:
lookup_type = 'exact'
lookup_type = '%s__exact' % (f.name, lookup_type)
try:
old_obj = opts.get_model_module().get_object(**{'%s__%s' % (f.name, lookup_type): field_data})
old_obj = opts.get_model_module().get_object(**{lookup_type: field_data})
except ObjectDoesNotExist:
return
if hasattr(self, 'original_object') and getattr(self.original_object, opts.pk.attname) == getattr(old_obj, opts.pk.attname):
Expand Down

0 comments on commit 7a80b2c

Please sign in to comment.