I\'m building an admin for Flask and SQLAlchemy, and I want to pass the HTML for the different inputs to my view using render_template. The templating framework
render_template
the ideal way is to
{{ something|safe }}
than completely turning off auto escaping.