Passing HTML to template using Flask/Jinja2

后端 未结 5 1418
灰色年华
灰色年华 2020-11-21 07:44

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

5条回答
  •  醉话见心
    2020-11-21 08:12

    the ideal way is to

    {{ something|safe }}
    

    than completely turning off auto escaping.

提交回复
热议问题