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

Add AHRS page

parent 5f6f4c86
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,8 @@ app.config['FREEZER_DESTINATION'] = '../km3web'
PLOTS = [['dom_activity', 'dom_rates'], ['pmt_rates', 'pmt_hrv'],
['trigger_rates'], ['ztplot', 'triggermap']]
AHRS_PLOTS = [['yaw_calib'], ['pitch_calib'], ['roll_calib']]
@app.after_request
def add_header(r):
......@@ -26,6 +28,10 @@ def add_header(r):
def index():
return render_template('plots.html', plots=PLOTS)
@app.route('')
@app.route('/ahrs.html')
def index():
return render_template('plots.html', plots=AHRS_PLOTS)
@app.route('/plots/<path:filename>')
def custom_static(filename):
......
......@@ -29,11 +29,14 @@
<ul class="nav navbar-nav">
<li class="active"><a href="index.html">Overview</a></li>
</ul>
<!-- <ul class="nav navbar&#45;nav"> -->
<!-- <li class="active"><a href="#">Intra DOM Calibration</a></li> -->
<!-- </ul> -->
<!-- <ul class="nav navbar&#45;nav"> -->
<!-- <li class="active"><a href="#">K40 Rate Dist</a></li> -->
<!-- </ul> -->
<ul class="nav navbar-nav">
<li class="active"><a href="#">Intra DOM Calibration</a></li>
</ul>
<ul class="nav navbar-nav">
<li class="active"><a href="#">K40 Rate Dist</a></li>
<li class="active"><a href="ahrs.html">AHRS</a></li>
</ul>
<ul class="nav navbar-nav">
<li class="active"><a href="https://git.km3net.de/km3py/km3mon/issues">Issues</a></li>
......
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