Django 管理员在 ModelSite 中输出额外的 HTML
最终,我想添加一个 来显示 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
覆盖“change_form.html”是正确的方法。您可以使用以下方式访问当前对象
Overriding "change_form.html" is the right way to go. You can access the current object with