django-realtime icon indicating copy to clipboard operation
django-realtime copied to clipboard

Django 1.9 issue

Open JoeManixBop opened this issue 9 years ago • 1 comments

Hi,

{% ishout_setup %} return '<' instead of '<' and so on. To fix that, you have to mark your return string as safe. from django.utils.safestring import mark_safe return mark_safe(

Regards, Robin

JoeManixBop avatar Dec 20 '15 16:12 JoeManixBop

Adding this "{% autoescape off %}{% ishout_js %}{% endautoescape %}" is the easiest way

Dean-Christian-Armada avatar Mar 06 '16 03:03 Dean-Christian-Armada