How to render html text from database inside a django template using template tags

4.2k views Asked by At

I save a text into my database using django form, textarea widget and bootstrap wysiwyg, but when I try to render it into my template using just the variable name

{{ text }}, 

I get rendered just the text with html tags like this:
shows the rendering of html tags
what I want to do is show the formatted text in html.

1

There are 1 answers

0
Y.N On BEST ANSWER

If you have the formatted HTML in your DB-field, and you absolutely sure is it safe, then try safe filter

{{ tablename.fieldname|safe }}

or

{{var|safe}}

See the doc.