Re: Password Field Form

2008-11-13 Thread Aatif
yes, it works. I was expecting a forms.Passwordfield() :-) > password => > forms.CharField(label=_(u'Password'),widget=forms.PasswordInput(render_value=False)) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Djang

Re: Password Field Form

2008-11-02 Thread Lukas Klein
Hi Nick, you can do this by passing the widget parameter to a CharField. A little example: password = forms .CharField (label=_(u'Password'),widget=forms.PasswordInput(render_value=False)) Lukas Am 02.11.2008 um 17:58 schrieb nkulmati: > > How come this page: > http://docs.djangoproject.co

Re: Password Field Form

2008-11-02 Thread [EMAIL PROTECTED]
Hi Nick, you can do this by passing the widget parameter to a CharField. A little example: password = forms.CharField(label=_(u'Password'),widget=forms.PasswordInput(render_value=False)) Lukas On Nov 2, 5:58 pm, nkulmati <[EMAIL PROTECTED]> wrote: > How come this > page:http://docs.djangoproje

Password Field Form

2008-11-02 Thread nkulmati
How come this page: http://docs.djangoproject.com/en/dev/ref/forms/fields/#module-django.forms.fields does not contain information about password fields? How do I create and use a password form field then? Clearly, django has support for password form fields, since they are used in the standard