[Fixed]-Formatting html Django-cms

1👍

Django automatically escapes the output of every variable tag, to protect you from Cross-site scripting. You can disable auto-escaping by using the safe template filter: {{ item|safe }}.

Leave a comment