DmitrMakeev commited on
Commit
5a51109
·
verified ·
1 Parent(s): 3e39985

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -404,9 +404,9 @@ def online():
404
  return render_template('online.html')
405
 
406
 
407
- @app.route('/calculate', methods=['GET'])
408
- def calculate():
409
- return render_template('calculate.html')
410
 
411
 
412
 
 
404
  return render_template('online.html')
405
 
406
 
407
+ @app.route('/table', methods=['GET'])
408
+ def table():
409
+ return render_template('table.html')
410
 
411
 
412