如何将数据添加到从不同模型获取的 django 管理 Change_list 页面?

发布于 2024-11-01 05:14:04 字数 68 浏览 1 评论 0原文

我想向某个change_list 管理页面添加一些信息。该信息取自与此模板中提供的模型不同的模型上的查询集。我该怎么做呢?

I would like to add a bit of information to a certain change_list admin page. The info is taken from a queryset on a different model than that presented in this template. How do I go about doing this?

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

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

发布评论

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

评论(3

沒落の蓅哖 2024-11-08 05:14:04

尝试在您的管理类中重写 changelist_view 函数:

class MyModelAdmin(admin.ModelAdmin):
    # .....
    def changelist_view(self, request, extra_context=None):
        extra = {'foo': bar}
        extra.update(extra_context or {})
        return super(MyModelAdmin, self).changelist_view(request, extra_context=extra)
    # .....

Try to rewrite changelist_view function in your admin class:

class MyModelAdmin(admin.ModelAdmin):
    # .....
    def changelist_view(self, request, extra_context=None):
        extra = {'foo': bar}
        extra.update(extra_context or {})
        return super(MyModelAdmin, self).changelist_view(request, extra_context=extra)
    # .....
我一直都在从未离去 2024-11-08 05:14:04

You can create a custom context processor. This allows you to expose a variable to the whole application. It works on pages rendered using RequestContext, tried this with the admin pages and it works.

亢潮 2024-11-08 05:14:04

使用 自定义模板标签 - 您可以获取和使用任何内容在其中。

Use a Custom Template Tag - you can fetch and use anything in it.

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