如何覆盖 Django 管理的索引视图 (sites.py)?
我想覆盖 django.contrib.admin.sites
中的 class AdminSite
中存在的索引视图。我想要通过此操作做的是,我想在此处检查用户是否是超级用户,然后显示包含所有模型的 index.html 模板,否则如果用户是普通员工用户,则向他/她显示具有不同内容的 test.html 模板。
I want to override the index view present in class AdminSite
in django.contrib.admin.sites
. What I want to do through this is I want to check here if user is superuser then show index.html template with all models otherwise if user is an normal staff user then show him/her a test.html template with different content.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
auth 包允许您开箱即用地逐个模型地设置权限。不一定需要覆盖视图。请参阅 https://docs.djangoproject.com/en/dev/topics/auth /#权限
The auth package lets you set up permissions on a model-by-model basis out of the box. There's not necessarily a need to override the view. See https://docs.djangoproject.com/en/dev/topics/auth/#permissions