Django 管理员在 ModelSite 中输出额外的 HTML

发布于 2024-08-25 11:11:43 字数 364 浏览 7 评论 0原文

最终,我想添加一个 来显示 Django 管理页面上的特定模型。 Django 已经正确渲染了该模型的表单,但除了 Django 的表单之外,我还想添加此 src 属性需要包含当前显示记录的主键。

我已经通过 Django 的文档学习了如何正确覆盖 change_form.html 模板,并且可以将标记添加到正确的块,但我不知道如何访问主键值。 (无论进行多少坚定的谷歌搜索都没有任何帮助。)

或者,是否有直接的方法来指定我想要在我的 ModelSite 定义中生成额外的输出?

Ultimately, I want to add an <iframe> to the display of a particular model on Django's admin page. Django is already rendering the form for this model correctly, but I want to add this <iframe> in addition to Django's form. The src attribute needs to involve the primary key for the currently-displayed record.

I've learned how to properly override the change_form.html template through Django's documentation, and I can add markup to the right block, but I can't figure out how to access the primary key value. (No amount of determined Googling has helped at all.)

Alternatively, is there a direct way to specify that I want to produce extra output in my ModelSite definition?

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

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

发布评论

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

评论(1

朕就是辣么酷 2024-09-01 11:11:43

覆盖“change_form.html”是正确的方法。您可以使用以下方式访问当前对象

{{ original }}

Overriding "change_form.html" is the right way to go. You can access the current object with

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