I am trying to return a file and changing the template in Flask.
return send_file(myfile, as_attachment=True), return render_template("template.html")
But it gives me an error.
If I try to make 2 return
s like this:
return send_file(myfile, as_attachment=True)
return render_template("template.html")
or
return render_template("template.html")
return send_file(myfile, as_attachment=True)
It doesn't work eitherway. How do I fix this?
Thanks