[Django]-Using CKEditor on Django Blog, How can I get django to render the html from ckeditor?

6👍

If you want to display HTML on your template you need to use the safe filter (documentation).

Example:

{{ my_html_text|safe }}

Leave a comment