最好的 Django 配置文件/用户设置应用程序是什么?
我正在寻找一个好的 django 应用程序,它为我带来基本功能,例如
- 用户配置文件编辑
- 密码更改
- 保存设置/特定于我的应用程序的首选项
- 将身份验证密钥保存到外部应用程序(twitter,rtm,facebook,...)
我知道如何扩展普通用户模型(请参阅文档 http://www.djangobook.com/en/ 1.0/chapter12/#cn222)
,周围还有这些应用程序:
- django-profile/
- idios (在 github 上)
- django-account/
但是,它们似乎都不适合我想要的。 因此,我的问题是,有谁知道我没有找到的更好/更成熟/功能更丰富的应用程序? 或者我必须推出自己的应用程序?
I'm looking for a good django app that brings to me basic features like
- user profile editing
- password changing
- save settings / preferences specific to my app
- save authentication keys to external apps (twitter, rtm, facebook, ...)
I know how to extend the normal user model (see docs http://www.djangobook.com/en/1.0/chapter12/#cn222)
and there are also these apps around:
- django-profile/
- idios (on github)
- django-account/
however, none of them seems to be ideal for what I want.
Therefore, my question is, does anyone know a app that is better / more mature / more feature rich that I just didn't find?
Or do I have to roll my own app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我使用 django-userena。
https://github.com/bread-and-pepper/django-userena
演示: http://www.django-userena.org
I use django-userena.
https://github.com/bread-and-pepper/django-userena
demo: http://www.django-userena.org
我很遗憾地通知您,您(目前)必须使用 django-registration/django-profiles 以及 django-socialregistration 来组合自定义解决方案。
从此处开始,然后进展到社交网络身份验证。从好的方面来说,django 还很年轻,所以在不久的将来就会有可靠的解决方案,你也将成为其中的一部分。 ;-)
I am sorry to inform you that you will (for now) have to put together a custom solution using django-registration/django-profiles along with django-socialregistration.
Start here with and progress to Socialnetwork Authentication. On the up side, django is young so solid solutions are in the near future and you will be part of them. ;-)