added perspectiveB

This commit is contained in:
nglk 2020-09-08 16:40:30 +02:00
parent 88a7b13f9d
commit e357535d8e
3 changed files with 4 additions and 4 deletions

Binary file not shown.

View File

@ -8,7 +8,7 @@ def hello_world():
return 'Hello, World!'
@app.route('/hello/')
@app.route('/hello/<name>')
def hello(name=None):
return render_template('hello.html', name=name)
# @app.route('/hello/<name>')
@app.route('/perspectiveB/')
def perspectiveB():
return render_template('perspectiveB.html')