You mean that the output is each.textescaped and you see the text in your browser, and not the displayed markup?
This is because autorun of Django template files is displayed by default for security reasons. You might want to use the built-in filter safeas follows:
<div class="content video">{{ each.text|safe }}</div>
Or another way is to use mark_safein your view.
source
share