0

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

pennersr
  • 6,306
  • 1
  • 30
  • 37
user1680104
  • 8,437
  • 4
  • 22
  • 27
  • Not familiar with allauth, but if you find it too limiting, you may also be interested in https://github.com/pinax/django-user-accounts. It's been working great for me, and it's definitely compatible with UserProfile models. – acjay Nov 30 '12 at 22:53

1 Answers1

1

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. allauth does not get in the way with standard 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

Community
  • 1
  • 1
pennersr
  • 6,306
  • 1
  • 30
  • 37