如何覆盖 Django 管理的索引视图 (sites.py)?

发布于 2024-11-26 19:32:17 字数 190 浏览 0 评论 0原文

我想覆盖 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笨笨の傻瓜 2024-12-03 19:32:17

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文