You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{% 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(<script> .....)
Regards,
Robin
The text was updated successfully, but these errors were encountered:
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(<script> .....)
Regards,
Robin
The text was updated successfully, but these errors were encountered: