Re: Does not generate the password hash my User

2013-12-09 Thread Jérôme Thiard
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

Re: Signals not working as expected

2013-11-29 Thread Jérôme Thiard
>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