I read one can create a Signup form using allauth, but does it also support UserProfile models as described in the Django documentation?
https://docs.djangoproject.com/en/dev/topics/auth/#storing-additional-information-about-users
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You are free to put up a custom signup form, ask the user for his favorite color, and store that in a project specific UserProfile as you please.
allauthdoes not get in the way withstandard Django behavior on this point.
Have a look here on how to set up a custom signup form:
How to customize user profile when using django-allauth