开发者

Does Django have a plugin/app that handles "levels" for users? And certain permissions/rankings for each?

开发者 https://www.devze.com 2023-02-05 03:18 出处:网络
I want to promote users to moderators, admins, etc. What about scorin开发者_开发百科g and game mechanics? What app takes care of that?

I want to promote users to moderators, admins, etc.

What about scorin开发者_开发百科g and game mechanics? What app takes care of that?

What about moderation? When someone changes a title of a post, it needs 3 more moderators to approve it before it takes affect.


Using django's built in authentication module, you could create specific "Groups" to assign permissions to, and then promote users by re-assigning the groups they belong to.

http://docs.djangoproject.com/en/dev/topics/auth/

For specific approvals and use cases you will probably need to write your own handling.

0

精彩评论

暂无评论...
验证码 换一张
取 消