使用对象权限时,如何将 ModelAdmin 查询集限制为用户可编辑的项目?
我正在尝试实现 Florian 在 Django Advent 文章中的 对象权限系统,但是我我遇到了一个问题,试图将查询集限制为仅返回用户有权编辑/查看的项目。 Florian 在他关于包装管理的部分中提到了这一点,但跳过了它。我看不出过滤查询集的好方法。我错过了什么吗?
I'm trying to implement Florian's object permissions system from his article on Django Advent, but I'm running into an issue trying to limit the queryset returned to only items the user has permission to edit/view. Florian mentions it in his section on wrapping the admin, but skips over it. I can't see a good way to filter the queryset. Am I missing something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您执行此操作时:
您可以通过这种方式过滤您的查询集(在您的方法查询集中):
When you do this:
you can filter your query set in this way (in your method queryset):