allauth是否支持UserProfile模型?

时间:2012-11-29 20:44:05

标签: python django django-models django-authentication django-allauth

我读过可以使用allauth创建一个注册表单,但它是否也支持Django文档中描述的UserProfile模型?

https://docs.djangoproject.com/en/dev/topics/auth/#storing-additional-information-about-users

1 个答案:

答案 0 :(得分:1)

您可以自由地张贴自定义注册表单,向用户询问他喜欢的颜色,并根据需要将其存储在项目特定的UserProfile中。 allauth不会妨碍 关于这一点的标准Django行为。

在此处查看如何设置自定义注册表单:

How to customize user profile when using django-allauth