diff --git a/app/routes.py b/app/routes.py index e0c26ec8b8354e30b049cfadf1c7e8a5cffafc73..6459aa96613d57ff2a0ea4ed01070eb0e70abd1d 100644 --- a/app/routes.py +++ b/app/routes.py @@ -28,11 +28,12 @@ def add_header(r): def index(): return render_template('plots.html', plots=PLOTS) -@app.route('') + @app.route('/ahrs.html') -def index(): +def ahrs(): return render_template('plots.html', plots=AHRS_PLOTS) + @app.route('/plots/<path:filename>') def custom_static(filename): print(filename)