[Answered ]-How can I put XML in a HTML template? python/Django

2👍

Try rendering in your template like this,

{{ user_serialized_xml | safe }}

It will avoid escaping HTML characters. For more information, see this docs

Leave a comment