From 985d3465c8a03e391ad30c63797add1fbe8c0b12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Gruszczy=C5=84ski?= Date: Sun, 9 Mar 2025 11:24:01 +0100 Subject: [PATCH] wyswietlanie hostow w /clear-servers --- app.py | 4 +--- templates/clear_servers.html | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/app.py b/app.py index 58b4de8..d122a03 100644 --- a/app.py +++ b/app.py @@ -75,7 +75,6 @@ class Host(db.Model): return daemon_ip return self.hostname - class DeployLog(db.Model): id = db.Column(db.Integer, primary_key=True) timestamp = db.Column(db.DateTime, default=db.func.current_timestamp()) @@ -358,7 +357,6 @@ def format_host(host): # ------------------- # LOGOWANIE, REJESTRACJA, ZMIANA HASŁA # ------------------- - @app.route('/') def index(): if 'user_id' in session: @@ -621,7 +619,7 @@ def clear_server(): if 'user_id' not in session: return redirect(url_for('login')) hosts = Host.query.filter_by(user_id=session['user_id']).all() - return render_template('clear_servers.html', hosts=hosts) + return render_template('clear_servers.html', hosts=hosts, format_host=format_host) @app.route('/clear-single-server/', methods=['POST']) def clear_single_server(host_id): diff --git a/templates/clear_servers.html b/templates/clear_servers.html index b787247..3426411 100644 --- a/templates/clear_servers.html +++ b/templates/clear_servers.html @@ -48,7 +48,7 @@