How can I render a {{}} variable in CKEditor in a Django template?

31 Views Asked by At

The variables that I put in Django-ckeditor are not displayed correctly. Is there a way to do it? enter image description here

I used autoescape and safe .

{% autoescape off %}
{{ msg }}
{% endautoescape %}

{{ message |safe }}

0

There are 0 best solutions below