Re: Problem on user profile

2011-09-28 Thread jenia ivlev
Thanks but it wasnt this. I was tired and didnt see some gross mistakes. Thanks for your help though On Sep 28, 6:01 am, Thomas Orozco wrote: > You might be importing your models.py file multiple time, thus registering > the signals multiple times. > > You should look into the signals documentati

Re: Problem on user profile

2011-09-28 Thread Thomas Orozco
You might be importing your models.py file multiple time, thus registering the signals multiple times. You should look into the signals documentation - you can avoid duplicate signal handlers and this is covered there. Le 28 sept. 2011 14:44, "Lingfeng Xiong" a écrit : -- You received this mess

Problem on user profile

2011-09-28 Thread Lingfeng Xiong
hi there, I wanna build a user portal for my website. When a user log in, it can modify it's profile in this portal. I have already followed "https:// docs.djangoproject.com/en/1.3/topics/auth/" and created a class named UserProfile with "AUTH_PROFILE_MODULE = '.UserProfile' in settings.py.