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')