Re: models.PasswordField

2006-10-02 Thread SmileyChris
Unfortunately it has only changed for creating new users, not editing the password of existing ones. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to dj

Re: Re: models.PasswordField

2006-10-01 Thread James Bennett
On 10/1/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > You mentioned the admin interface for creating users. Well, the > password field there is a plain text field with a string in a specific > form ('[algo]$[salt]$[hexdigest]'). That may work for developers but > I'd never want to ask a "regu

Re: models.PasswordField

2006-10-01 Thread [EMAIL PROTECTED]
Hi and thanks for your quick reply. I should note that I haven't tried what you suggested and to be honest it sounds a bit complicated, but as I mentioned earlier I'm a django newbie so I shouldn't really be debating this. It just seems to me that something like a password field (in the model) h

Re: models.PasswordField

2006-09-30 Thread James Bennett
On 9/30/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > The problem is that I'd like to define one of my fields in a model as a > password field and have the administration interface handle that > properly. The model system doesn't have a password field, but the manipulator system does, which