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
When you have a lot of variables that don't need escaping, you can use an autoescape block:
autoescape
{% autoescape off %} {{ something }} {{ something_else }} {{ something_important }} {% endautoescape %}