Admin中的自定义操作

Admin中的自定义操作

本文介绍了Django Admin中的自定义操作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的Django应用中,我有一个Newsletter模型。现在,我希望能够从Django Admin中 发送 新闻通讯(甚至 重新发送 )。

in my Django app i have a Newsletter model. Now I'd like to be able to send the newsletter (and even resend it) from Django Admin.

我可以使用 Model.save()方法上的钩子来做到这一点,但是还有另一种方法是

I could do this with a hook on the Model.save() method but is there another way that is not tied to the Model?

谢谢

推荐答案

使您可以轻松地进行挂钩可以对管理员列表页面中的选定项目执行的自定义操作。

Admin actions allow you to easily hook up custom actions which can be performed on selected items from the admin's list pages.

这篇关于Django Admin中的自定义操作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-30 23:52