I understand that this is a little perverse, but I have a legacy database with some entries as formatted html. I'd like to just push this into my django templates as ASCII and let the browser display it.
Django kindly converts my fields to unicode, and so the browser displays the entire text <p> </p> etc. intact.
I was hoping that there might be a template flag {{ obj.text|ascii }} or something that might fix this for me - does anyone have any ideas? Thanks.