Django

Code

Show
Ignore:
Timestamp:
11/20/08 13:01:40 (2 months ago)
Author:
ubernostrum
Message:

OneToOne? filtering should only apply in a popup selection from the related model.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/contrib/admin/views/main.py

    r9245 r9507  
    238238                    break 
    239239 
    240         if self.opts.one_to_one_field: 
     240        if self.is_popup and self.opts.one_to_one_field: 
    241241            qs = qs.complex_filter(self.opts.one_to_one_field.rel.limit_choices_to) 
    242242