Skip to content
Snippets Groups Projects
Commit 02124ef1 authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Add reco page

parent 27cde1b9
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,7 @@ AHRS_PLOTS = [['yaw_calib'], ['pitch_calib'], ['roll_calib']]
TRIGGER_PLOTS = [['trigger_rates'], ['trigger_rates_lin']]
K40_PLOTS = [['intradom'], ['angular_k40rate_distribution']]
RTTC_PLOTS = [['rttc']]
RECO_PLOTS = [['track_reco']]
if exists(CONFIG_PATH):
config = toml.load(CONFIG_PATH)
......@@ -79,6 +80,11 @@ def index():
def ahrs():
return render_template('plots.html', plots=AHRS_PLOTS)
@app.route('/reco.html')
@requires_auth
def reco():
return render_template('plots.html', plots=RECO_PLOTS)
@app.route('/rttc.html')
@requires_auth
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment