From f384e69b4f7f3f1eee5fce0d376bad157cc890ca Mon Sep 17 00:00:00 2001 From: Tamas Gal <himself@tamasgal.com> Date: Thu, 10 Jun 2021 11:13:45 +0200 Subject: [PATCH] Fix acoustics template --- frontend/app/routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/routes.py b/frontend/app/routes.py index 629e864..882012d 100644 --- a/frontend/app/routes.py +++ b/frontend/app/routes.py @@ -115,7 +115,7 @@ def single_plot(plot): @app.route('/acoustics.html') @requires_auth def acoustics(): - return render_template('acoustics.html', plots=expand_wildcards(ACOUSTICS_PLOTS)) + return render_template('plots.html', plots=expand_wildcards(ACOUSTICS_PLOTS)) @app.route('/ahrs.html') -- GitLab