Change POP3 email setup form widget to hide the password

This commit is contained in:
Roberto Rosario
2012-03-12 23:43:08 -04:00
parent b7e582928a
commit a234c76326
2 changed files with 5 additions and 2 deletions

View File

@@ -119,3 +119,6 @@ class SourceTransformationForm_create(forms.ModelForm):
class POP3EmailSetupForm(forms.ModelForm):
class Meta:
model = POP3Email
widgets = {
'password': forms.widgets.PasswordInput,
}