Fill user profile on user registration with Django
问题 I'm developing an application with the user default authentication provided by Django (and django-registration-redux ). Also in docs, they recommend to link the user profile with a OneToOneField in a different model,as explain here: https://docs.djangoproject.com/en/1.10/topics/auth/customizing/ The problem is: How to build a registration view that includes the profile form? Note that it's only creating a user account with the basic data without profile info. I already have worked in other