add parameters to render_template() flask code example
Example: flask pass multiple variables to template
def index() :
return render_template('index.html', obj = "object", data = "a223jsd" )
def index() :
return render_template('index.html', obj = "object", data = "a223jsd" )