I'm using the tutorial at this link to do my lazy-registration, and I'm trying to combine it with django-registration.
The tutorial at the lazy-registration link simply needs to call one command to re-parent the events saved:
def on_registration_complete(self, request):
Wishlist.reparent_all_my_session_objects(request.session, request.user)
return HttpResponseRedirect('/')
def on_login_complete(self, request, user, openid=None):
Wishlist.reparent_all_my_session_objects(request.session, request.user)
return HttpResponseRedirect('/')
How do I do a post-hook with django-registration to call reparent_all_my_session_objects()
command after the user logs in or registers? Do I need to create my own auth by copying from django.contrib.auth?
Need to create your own signal receivers on registration and login.