From d5fb5f47d816eb2348e7fe5e50d0bf2142149673 Mon Sep 17 00:00:00 2001 From: 3err0 Date: Sat, 1 Mar 2025 23:33:15 +0800 Subject: [PATCH] redirect to dashboard --- routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes.py b/routes.py index 0800d74..ac1fa7a 100644 --- a/routes.py +++ b/routes.py @@ -279,7 +279,7 @@ def payment(): db.session.add(booking) db.session.commit() - return redirect(url_for('home')) + return redirect(url_for('dashboard')) return render_template('payment.html', total_price=total_price)