Django 仅按组限制访问
我只有你可以通过管理员中的用户权限来限制用户可以执行的操作。但是有没有办法通过将它们添加到哪个组来限制他们在管理员中的操作?
如果某个组属于某个组,我想允许某个组执行该模型中的所有操作,
谢谢!
I only you can limit what a user can do via the user permissions in admin.. But is there a way to limit them in admin via what group you add them to?
I want to allow a certain group to do everything in that model if they belong to a certain group
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您查看管理员中的
Group
模型,您可以在那里设置权限。您可以通过查看用户的User
模型将人员添加到组中。If you look at the
Group
model in the admin you can set permissions there. You can add people to a group by looking at theirUser
model.