Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

display html django template

#If you don't want the HTML to be escaped, look at the safe filter and the autoescape tag:
//Safe
https://docs.djangoproject.com/en/4.0/ref/templates/builtins/#safe

{{ myhtml |safe }}

//Autoescape
https://docs.djangoproject.com/en/4.0/ref/templates/builtins/#autoescape

{% autoescape off %}
    {{ myhtml }}
{% endautoescape %}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #display #html #django #template
ADD COMMENT
Topic
Name
7+3 =