From d945f1f3ff9181bb2ade864ca36c8dab7223e20d Mon Sep 17 00:00:00 2001 From: Sanjay B Date: Thu, 12 Jun 2014 16:27:16 +0530 Subject: [PATCH] remove user field from profile form --- itf/itfprofiles/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/itf/itfprofiles/forms.py b/itf/itfprofiles/forms.py index f56720f..5bed3b7 100644 --- a/itf/itfprofiles/forms.py +++ b/itf/itfprofiles/forms.py @@ -196,7 +196,7 @@ class PersonForm(ItfForm): class Meta: - exclude = ('connections', 'productions', 'groups', 'last_accessed', 'occupations',) + exclude = ('user', 'connections', 'productions', 'groups', 'last_accessed', 'occupations',) model = Person widgets = { 'first_name': forms.TextInput,