From beed694ecaf7628d6bce32ba6c6bb4d6ba82dd18 Mon Sep 17 00:00:00 2001 From: Mateusz779 Date: Wed, 19 Apr 2023 09:38:21 +0200 Subject: [PATCH] test --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 3ebcb5b..99649ea 100644 --- a/app.py +++ b/app.py @@ -24,7 +24,7 @@ def main(): if db.get_user_bytoken(auth_token) is None: return redirect("/login") machines_all = db.get_machines() - return render_template('index.html', ssh_port=config.webssh_port, table=machines_all.to_html_table()) + return render_template('index.html', ssh_port=config.webssh_port, table=machines_all) @app.route('/login')