Hello, I use Django 0.96 and in one of model field I have to define a password entry:
class MyModel(...): password = modles.PasswordField() I can't do it because we don't have any "Password" attribute. I have been looking for this problem, but it has been not solved. The last alternative was : from django import newforms as forms class MyModel(..): password = forms.CharField(widget=forms.PasswordInput) But I don't see any text input field. Could somebody tell me how I can solve this problem? Regards, Nader --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---