The problem is that you have a `password` field in your `Cliente` model.
So the `ClienteForm` save the readable value of the password in the Cliente
model.
You should not have this field in the model. Instead override the save
method of your `ClientForm` to create the user in the form and not in
>From Django documentation
https://docs.djangoproject.com/en/1.6/topics/signals/#connecting-receiver-functions
You can put signal handling and registration code anywhere you like.
> However, you’ll need to make sure that the module it’s in gets imported
> early on so that the signal handling gets
2 matches
Mail list logo