0

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

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

4

1 回答 1

1

您可以自由地建立一个自定义注册表单,询问用户他最喜欢的颜色,并将其存储在您喜欢的项目特定的 UserProfile 中。allauth在这一点上不会妨碍标准的 Django 行为。

在这里查看如何设置自定义注册表单:

使用 django-allauth 时如何自定义用户配置文件

于 2012-12-14T12:54:15.033 回答