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 project inheriting from AbstractUser and customizing  User Model but I would like this time use Profile model
Can you help me?