DmitrMakeev commited on
Commit
a049e2d
·
verified ·
1 Parent(s): 8c5d597

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -335,6 +335,9 @@ def online():
335
  return render_template('online.html')
336
 
337
 
 
 
 
338
 
339
 
340
 
 
335
  return render_template('online.html')
336
 
337
 
338
+ @app.route('/calculate', methods=['GET'])
339
+ def calculate():
340
+ return render_template('calculate.html')
341
 
342
 
343