Answers for "how to redirect to a section of a page in html using flask"

0

how to redirect to another route in flask

from flask import Flask, render_templates

app = Flask(__name__)


@app.route("/")
def index:
  return render_template("index.html")


@app.route("/home")
def home:
	return redirect("/", code=302)
  
  
app.run()
Posted by: Guest on January-21-2021
-1

Howt o get redirected to another page using a button in HTML using Python using Flask

<button type="button" onclick="window.location.href='{{ url_for( 'dataTablePage' , table='Y' ) }}';">Display Table Y</button>
Posted by: Guest on December-29-2020

Code answers related to "how to redirect to a section of a page in html using flask"

Python Answers by Framework

Browse Popular Code Answers by Language