I'm kind of confused by this because it seems that Django templates have optional HTML filters but this seems to be happening automatically.. I am making this demo app where the user will do an action that calls a python script which retrieves a url, I then want to display this in a new window.. its all fine except when the display comes back, the HTML is sanitized in this format (I see this when I view the page source, in the browser it shows as regular HTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"><head><meta content="text/html; charset=utf-8" http-equiv="content-type" /><script type="text/javascript">//<![CDATA[
si_ST=new Date

this is the regular HTML version of the same:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"><head><meta content="text/html; charset=utf-8" http-equiv="content-type" /><script type="text/javascript">//<![CDATA[ si_ST=new Date //]]></script><script type="text/javascript">//<![CDATA[ _G={ST:(si_ST?si_ST:new Date),Mkt:"en-

I'm just outputting this to a basic block in my html template, the template has no other formatting (no HTML, etc), just 1 block where this output goes.. any advice on why this is happening and how to display the regular HTML (so it would show the page in the browser and not the HTML text) is appreciated.. thanks

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

Use the safe filter:

{{ myvariable|safe }}

If you need large parts of your template treated like this (that is, if you find yourself using |safe over and over), you can disable the autoescaping whole-sale:

{% autoescape off %}
blah {{myvariable}} blah {{myothervariable}}
{% endautoescape %}
link|improve this answer
+1 Nice answer! – rebus Aug 23 '10 at 21:06
I've got this: {{content |safe}} but then I get an error: "TemplateSyntaxError at /web_auto/call_mechanize_script/ Could not parse some characters: content| ||safe" – Rick Aug 23 '10 at 21:10
the {% autoescape off %} works fine.. thanks for that, so I am giving you the correct answer, not sure why it won't work for the other way – Rick Aug 23 '10 at 21:20
1  
it should be {{ content|safe }}, without a space between "content", "|", and "safe. – Faisal Aug 23 '10 at 22:41
feedback

Take a look at the "safe" filter, which disables Django's default escaping:

http://docs.djangoproject.com/en/1.2/ref/templates/builtins/#safe

link|improve this answer
oh ok so thats whats doing it.. thanks, will check it out – Rick Aug 23 '10 at 20:56
Can anyone help with the syntax, i see where it says about safe, but I can't figure out the syntax, I am trying {{ myvariable safe}} and some other things but its not working – Rick Aug 23 '10 at 21:01
Try {{ var|safe }} – rebus Aug 23 '10 at 21:05
I did try that but get an error, I mentioned in Ned Batchelder's answer – Rick Aug 23 '10 at 21:11
feedback

There is also autoescape which controls escaping block wide.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.