et le app.py
This commit is contained in:
parent
15823c850f
commit
192be842a3
|
@ -363,11 +363,16 @@ def logs():
|
||||||
print(configs)
|
print(configs)
|
||||||
return(render_template("logs.html", data=configs))
|
return(render_template("logs.html", data=configs))
|
||||||
|
|
||||||
|
|
||||||
@app.route("/stats/", methods=["GET", "POST"])
|
@app.route("/stats/", methods=["GET", "POST"])
|
||||||
def stats():
|
def stats():
|
||||||
return(render_template("stats.html"))
|
return(render_template("stats.html"))
|
||||||
|
|
||||||
|
|
||||||
|
@app.route("/dev_override/", methods=["GET", "POST"])
|
||||||
|
def stats():
|
||||||
|
return(render_template("vnc.html"))
|
||||||
|
|
||||||
|
|
||||||
@app.route('/download/<path:filename>', methods=['GET', 'POST'])
|
@app.route('/download/<path:filename>', methods=['GET', 'POST'])
|
||||||
@login_required
|
@login_required
|
||||||
|
|
Loading…
Reference in New Issue