From bdd13a4daaf2471c851f538a76e86010a968d24d Mon Sep 17 00:00:00 2001 From: Luke Plant Date: Fri, 3 Sep 2010 18:56:12 +0000 Subject: [PATCH] Fixed #14090 - Many sql queries needed to display change user form Thanks to Suor for report and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13683 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/auth/forms.py | 4 ++++ 1 file changed, 4 insertions(+) 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