如何在 Django 管理中拥有一个带有按钮的网格并向按钮传递一个记录 ID?

发布于 2024-10-13 07:28:13 字数 133 浏览 4 评论 0原文

最简单的用图片说。

alt text

我不确定如何使用按钮创建第二列。然后如何添加 id 以便按钮运行特定记录的代码。

Easiest said with pictures.

alt text

I'm not sure how to create the 2nd column with the button. Then how to add an id so that the button runs code for the specific record.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

缱倦旧时光 2024-10-20 07:28:13

虽然我认为操作更好,但如果您确实需要一个按钮,这是最简单的方法:

定义一个在模型中返回 HTML 按钮的函数。视图如何处理按钮操作是您的决定,就像任何其他视图一样。

一种想法是链接到特定的 URL,如 /restart/3/ (如果此按钮执行安全操作),或者将表单元素放入使用 < POST 到单独视图的每个按钮中;input type="hidden" name="id" value="%(the_id)s" />

# models.py
    def restart_button(self):
        return '<a href="restart/%s">Restart Me</a>' % (self.id) 
    restart_button.allow_tags = True

# admin.py
list_display = ('restart_button', ...)

def get_urls(self):
    # use get_urls for easy adding of views to the admin
    urls = super(MyModelAdmin, self).get_urls()
    my_urls = patterns('',
        (r'^restart/(?P<id>\d)
, self.restart)
    )
    return my_urls + urls

def restart(self, request, id):
    MyModel.objects.get(id=id).restart()
    request.user.message_set.create(message="%s restarted." % id)
    return http.HttpResponseRedirect('../')

Although I think actions are better, if you really need a button, here's the easiest way:

Define a function that returns an HTML button in your model. How a view handles that button action is your call and just like any other view.

One idea is to link to a specific URL like /restart/3/ (if this button is performing a safe operation) or put form elements in each button that POSTs to a separate view with <input type="hidden" name="id" value="%(the_id)s" />

# models.py
    def restart_button(self):
        return '<a href="restart/%s">Restart Me</a>' % (self.id) 
    restart_button.allow_tags = True

# admin.py
list_display = ('restart_button', ...)

def get_urls(self):
    # use get_urls for easy adding of views to the admin
    urls = super(MyModelAdmin, self).get_urls()
    my_urls = patterns('',
        (r'^restart/(?P<id>\d)
, self.restart)
    )
    return my_urls + urls

def restart(self, request, id):
    MyModel.objects.get(id=id).restart()
    request.user.message_set.create(message="%s restarted." % id)
    return http.HttpResponseRedirect('../')
鯉魚旗 2024-10-20 07:28:13

与此类事情的推荐解决方案相比,添加按钮将是相对大量的工作:添加 管理操作,它可以让您勾选要操作的对象,然后从“操作:”下拉列表中选择要执行的操作。

Adding a button is going to be a relatively large amount of work compared to the recommended solution to this kind of thing: adding an admin action, which will let you tick the object(s) you want to act on, then choose what to do from the Action: drop-down.

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