views:

100

answers:

2

If I want some text to appear literally in a Django template, e.g.

{{Image.jpg|title}}

and I want that text to be output (not interpretated) in the HTML, how do I do so?

+1  A: 

You could start it with an HTML entity. e.g.:

{{Image.jpg|title}}

However, I can only imagine this means you are writing content in your templates, which is normally not advisable.

Fragsworth
+5  A: 

Try the {% templatetag %} template tag

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

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

czarchaic