Open jfroejk opened 6 years ago
I have seen the problem in templatetag_handlebars.js:handlebars_js(). Without mark_safe() it's output is quoted and appears as text in the pages using the tag. Corrected version:
@register.simple_tag def handlebars_js(): return mark_safe("""""" % settings.STATIC_URL)
I have seen the problem in templatetag_handlebars.js:handlebars_js(). Without mark_safe() it's output is quoted and appears as text in the pages using the tag. Corrected version:
@register.simple_tag def handlebars_js(): return mark_safe("""""" % settings.STATIC_URL)