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
You can also declare it HTML safe from the code:
from flask import Markup value = Markup('The HTML String')
Then pass that value to the templates and they don't have to |safe it.
|safe