yespage fixed bugs

This commit is contained in:
danamir
2020-05-10 19:14:24 +03:00
parent 711eb4ac28
commit 6f721b18d7
6 changed files with 48 additions and 54 deletions

7
app.py
View File

@@ -21,6 +21,11 @@ def yespressed():
def nopressed():
return render_template('nopage.html')
@app.route('test', methods=['GET', 'POST'])
def t():
return render_template('/test/t1.html')
if __name__ == '__main__':
app.jinja_env.auto_reload = True
app.run(debug=False, host='0.0.0.0')
app.run(debug=False, host='0.0.0.0')