On Apr 1, 8:35 am, MrBodjangles <mrangelc...@gmail.com> wrote:
> Hi All,
> I know this is something very basic (perhaps even a typo), but the
> code below gives an error:
>
> "    password = models.CharField(widget=PasswordInput())
> TypeError: __init__() got an unexpected keyword argument 'widget'
> "
>
> ( This should be similar to what was presented in the official doc:>>> class 
> ArticleForm(ModelForm):
>
> ...     pub_date = DateField(widget=MyDateWidget())
> )
>
> The commented out line (validate_password) renders to type ="text",
> and so I wanted to have it render as type="password"

You are confusing model and form fields. You can't set a widget on a
model field, only on a form field. If you want to override the widget
for the password field on the User_AccountForm, you'll have to
redefine that field on the form:

class User_AccountForm(ModelForm):
    password = forms.CharField(widget=PasswordInput())
    class Meta:
        model = User_Account

--
DR.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to