From cceba08b1cab50037d9b804067cb4792f2c30f76 Mon Sep 17 00:00:00 2001 From: Michael Ziegler Date: Sun, 4 Apr 2010 22:03:37 +0200 Subject: [PATCH] use a PasswordInput field for the supw --- pyweb/mumble/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyweb/mumble/forms.py b/pyweb/mumble/forms.py index 3de2386..67da798 100644 --- a/pyweb/mumble/forms.py +++ b/pyweb/mumble/forms.py @@ -81,7 +81,7 @@ class MumbleForm( PropertyModelForm ): motd = forms.CharField( required=False, widget=forms.Textarea ) passwd = forms.CharField( required=False, help_text=_( "Password required to join. Leave empty for public servers.") ) - supw = forms.CharField( required=False ) + supw = forms.CharField( required=False, widget=forms.PasswordInput ) obfsc = forms.BooleanField( required=False, help_text=_( "If on, IP adresses of the clients are not logged.") ) player = forms.CharField( required=False )