为每个不同用户提供独特的 django 管理站点
单独的用户是否可以看到他们对 django admin 所做的独特更改? 例如,如果 user1 添加了一些产品或类别以便能够看到他的独特更改 - 管理网站? 如果不是,我如何使用 django admin 作为基础构建这样的功能?
Is it possible for the seperate users to see the unique changes they made to django admin?
For example if user1 has added some products or categories to be able to see his unique changes - admin site?
If it's not how could i construct such a feature using the django admin as a base?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查以下链接:
用户和管理员
Check the following link:
Users and the admin
Django 是一个很棒的框架,并且有 LogEntry 模型
您必须在管理中注册此模型
类似这样的
urls.py
或扩展示例:
extra_admin.py
urls.py
Django is great framework and there is LogEntry model
You have to register this model in admin
Something like this
urls.py
Or extended example:
extra_admin.py
urls.py