在 ModelAdmin 中添加代码片段

发布于 2024-08-26 01:05:32 字数 80 浏览 5 评论 0原文

我有一个 ModelAdmin,我需要在其中插入一些不属于模型的 html 片段(它是一个 java-applet)。有什么办法可以做到这一点吗?

I have a ModelAdmin where I need to insert some html-snippet that is not part of a model (it's a java-applet). Is there any way to do this?

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

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

发布评论

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

评论(2

生生漫 2024-09-02 01:05:32

你有几个选择。如果小程序与表单字段之一相关,那么您可以创建一个包含该小程序的自定义小部件。另一种方法是覆盖模型更改表单使用的模板并包含小程序。该模板应位于模板目录中的 admin/app_name/model_name/change_form.html 中,其中 app_namemodel_name 被替换为适当的值你的模型。

You have a couple options. If the applet is related to one of the form fields then you could create a custom widget which includes the applet. Another way would be to override the template used by the model change form and include the applet. The template should be in admin/app_name/model_name/change_form.html in your templates directory where app_name and model_name are replaced by the appropriate values for your model.

千里故人稀 2024-09-02 01:05:32

我倾向于做很多此类事情,这几乎正是您想要的:

class SomeModelAdmin(admin.ModelAdmin):
    ...
    list_display = (
        'visible',
        'thumbnail',
        'size',
        'url',
    )
    ...

    def thumbnail(self, obj):
        return u'<img src="%s" />' % obj.url

    thumbnail.allow_tags = True

...等等,即席 HTML 片段。 obj 是有问题的模型实例。就我个人而言,我发现这比无休止地子类化 Widgets、ModelForms 等更灵活 - 您的里程可能会有所不同,具体取决于您对管理站点所做的操作,或者您是否具有更正统的面向对象的说服力;在任何情况下知道如何做都是有帮助的。

I tend to do a lot of this sort of thing, which is pretty much what you seem to want:

class SomeModelAdmin(admin.ModelAdmin):
    ...
    list_display = (
        'visible',
        'thumbnail',
        'size',
        'url',
    )
    ...

    def thumbnail(self, obj):
        return u'<img src="%s" />' % obj.url

    thumbnail.allow_tags = True

... et voila, ad-hoc HTML snippets. obj is the model instance in question. Personally I find this more flexible than endlessly subclassing Widgets, ModelForms et al -- your mileage may vary depending on what you do with the admin site, or if your're of the more orthodox object-oriented persuasion; it's helpful to know how to do it in any case.

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