Django django-admin-tools DashboardModule - HTML 内容
django-admin-tools 说,我们可以在子项中使用 HTML(或)文本。但它转义了给定的 HTML 标签。所有标签均按给定方式显示,无需渲染。
self.children.append(modules.DashboardModule(
title = 'Example',
children = ['<b>bold example</b>',],
))
The django-admin-tools says, we can use HTML (or) Text in the children. But It's escaping the given HTML Tags. All the tags have been displayed as given without rendering.
self.children.append(modules.DashboardModule(
title = 'Example',
children = ['<b>bold example</b>',],
))
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编辑模板
并添加
edit the template
and add
来自文档:
整个文档中没有任何地方说
children
属性可以包含 HTML。From the documentation:
No where in that whole document does it say that the
children
property can contain HTML.