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
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
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
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
Hello.
I just started playing around with django and immediately stumbled
across a minor issue that I'd like to hear your views on.
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.
I took a look at