I am using django social-auth (http://django-social-auth.readthedocs.org/en/latest/index.html) and trying to create a user profile where the user can associate multiple accounts (like here on Stackoverflow).
Currently I am at the point where single user can login using different authentication providers, but for each login a new user is created. How can I associate all user accounts into single one (like user profile)?
Also, what is the best practice for creating user profile page when using django social-auth?