django模板语言中的文字?

时间:2009-12-15 05:43:36

标签: python django templates django-templates literals

如果我想在Django模板中出现一些文字,例如

{{Image.jpg|title}}

我想在HTML中输出(不解释)该文本,我该怎么做?

2 个答案:

答案 0 :(得分:5)

尝试{% templatetag %}模板标记

{% templatetag openvariable %}Image.jpg|title{% templatetag closevariable %}

http://docs.djangoproject.com/en/dev/ref/templates/builtins/#templatetag

答案 1 :(得分:1)

您可以使用HTML实体启动它。 e.g:

{{Image.jpg|title}}

但是,我只能想象这意味着您在模板中编写内容,这通常是不可取的。