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!' return 'Hello, World!'
@app.route('/hello/') # @app.route('/hello/<name>')
@app.route('/hello/<name>') @app.route('/perspectiveB/')
def hello(name=None): def perspectiveB():
return render_template('hello.html', name=name) return render_template('perspectiveB.html')