diff options
| author | Luke Plant <L.Plant.98@cantab.net> | 2010-09-03 18:58:53 +0000 |
|---|---|---|
| committer | Luke Plant <L.Plant.98@cantab.net> | 2010-09-03 18:58:53 +0000 |
| commit | 4b4168b1bf74ec2abe6c2fb10a80f426d860e952 (patch) | |
| tree | 8d2e966823178c4a3fa203e8f929eb966c0584af | |
| parent | 94047d7a3a53d4825d8e9ba1b51022005116ac34 (diff) | |
Fixed #14090 - Many sql queries needed to display change user form
Thanks to Suor for report and patch.
Backport for [13683] from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13684 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/auth/forms.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/django/contrib/auth/forms.py b/django/contrib/auth/forms.py index 086acf3349..992a0ff44d 100644 --- a/django/contrib/auth/forms.py +++ b/django/contrib/auth/forms.py @@ -52,6 +52,10 @@ class UserChangeForm(forms.ModelForm): class Meta: model = User + def __init__(self, *args, **kwargs): + super(UserChangeForm, self).__init__(*args, **kwargs) + self.fields['user_permissions'].queryset = self.fields['user_permissions'].queryset.select_related('content_type') + class AuthenticationForm(forms.Form): """ Base class for authenticating users. Extend this to get a form that accepts |
