Django template, send two arguments to template tag and return safe html value?
Is there a way to pass 2 arguments through django template tag and get a safe html value?
If I understand your question correctly, You can use the built in template tag "safe"
{{ context_var|safe }}