I'm trying to update from my very old version of django-registration to .7 in hopes of sorting out some registration issues I'm having.
In my old version, I use the profile_callback to create my site user profile: from site_users.views import create_site_user ... url(r'^$', register, {'profile_callback': create_site_user}, name='registration_register'), In .7 the docs say "connect a function to the signal" but I guess I don't understand. I have the signal user_activated = Signal(providing_args=["user"]) and I have my create_site_user function, but I'm not clear on how I insert tab A into slot B. I know how stupid I sound. I've looked at the signals docs, I've looked at the django-registration docs. I know this is simple, but I'm not getting it. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@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 -~----------~----~----~----~------~----~------~--~---