管理中的 Django 简单历史记录
我想向 django simple-history 添加管理视图功能。我在模型上创建了历史属性,该模型现在自动显示在管理文档部分中,无需我提供任何进一步的代码,但它不会出现在管理部分中。我希望用户能够查看更改的历史记录并使用most_recent 函数应用撤消函数。 您对如何解决这个问题有什么建议吗?
I would like to add admin view capability to django simple-history. I created a history attribute on a model and this model now appears in the admin docs section automatically without any further code from me, but it does not appear in the admin section. I want users to be able to see the history of changes and to apply an undo function using the most_recent function.
Do you have any suggestions for how to approach this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的模型是:
那么您可以拥有一个如下所示的管理员:
或者您可以自定义它...
if your models are:
then you can have an admin that looks like:
or you can customize it ...