I've successfully integrated django-registration 0.7 into my new site but need to propagate a "?next=foo" parameter from the registration form to the activation email link so that when a user completes the activation process they are redirected to the page that they originally tried to get to.
Since django-registration 0.7 doesn't use backends (a 0.8 addition) I don't think this SO solution will work.
I think the activation link should look like this:
http://Wantbox.com/accounts/activate/95df62fbdf27e366e083aa0e5827361679c3a864/?next=foo
Instead of this:
http://Wantbox.com/accounts/activate/95df62fbdf27e366e083aa0e5827361679c3a864/
How should I approach this problem? Thanks for your help!