在 ModelAdmin 中添加代码片段
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你有几个选择。如果小程序与表单字段之一相关,那么您可以创建一个包含该小程序的自定义小部件。另一种方法是覆盖模型更改表单使用的模板并包含小程序。该模板应位于模板目录中的
admin/app_name/model_name/change_form.html
中,其中app_name
和model_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 whereapp_name
andmodel_name
are replaced by the appropriate values for your model.我倾向于做很多此类事情,这几乎正是您想要的:
...等等,即席 HTML 片段。
obj
是有问题的模型实例。就我个人而言,我发现这比无休止地子类化 Widgets、ModelForms 等更灵活 - 您的里程可能会有所不同,具体取决于您对管理站点所做的操作,或者您是否具有更正统的面向对象的说服力;在任何情况下知道如何做都是有帮助的。I tend to do a lot of this sort of thing, which is pretty much what you seem to want:
... 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.