From 15d09483ea9bf3d9993c5b54b04605ed760026fb Mon Sep 17 00:00:00 2001 From: liuwei Date: Fri, 21 Mar 2025 15:46:46 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=A0=E4=B8=8Aerror=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/stats_dashboard/dashboard_server.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugins/stats_dashboard/dashboard_server.py b/plugins/stats_dashboard/dashboard_server.py index e0b43d8..5562a05 100644 --- a/plugins/stats_dashboard/dashboard_server.py +++ b/plugins/stats_dashboard/dashboard_server.py @@ -62,6 +62,10 @@ class DashboardServer: def groups(): return render_template('groups.html') + @app.route('/errors') + def groups(): + return render_template('errors.html') + @app.route('/api/plugin_stats') def api_plugin_stats(): days = request.args.get('days', 7, type=int)