Django django-admin-tools DashboardModule - HTML 内容

发布于 2024-10-18 02:39:11 字数 364 浏览 1 评论 0原文

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 技术交流群。

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

发布评论

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

评论(2

空袭的梦i 2024-10-25 02:39:11

编辑模板

admin_tools/dashboard/module.html

并添加

{% 自动转义关闭 %} {% endautoescape
%}

edit the template

admin_tools/dashboard/module.html

and add

{% autoescape off %} {% endautoescape
%}

浅忆 2024-10-25 02:39:11

来自文档:

pre_content
Text or HTML content to display above the module content. Default value: None.

content
The module text or HTML content. Default value: None.

post_content
Text or HTML content to display under the module content. Default value: None.

整个文档中没有任何地方说 children 属性可以包含 HTML。

From the documentation:

pre_content
Text or HTML content to display above the module content. Default value: None.

content
The module text or HTML content. Default value: None.

post_content
Text or HTML content to display under the module content. Default value: None.

No where in that whole document does it say that the children property can contain HTML.

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