Hi Kai,

I have done this very similarly(after a lot of wrong ideas). I now
have it working using 'connect' instead of 'send'

def user_profile(sender, user, request, **kwargs):
    profile = UserProfile(user= user)
    profile.save()

from registration.signals import user_activated
user_activated.connect(user_profile)

I picked this up from this thread :
http://stackoverflow.com/questions/3114976/extending-django-registration-using-signals/3124006#3124006

Hope this helps.

                          Alex

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to