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)