adds views for analyzing and log viewer

This commit is contained in:
Michael Beck
2025-02-06 22:49:09 +01:00
parent a5c15f211e
commit 94fa56b195
5 changed files with 31 additions and 3 deletions

8
app.py
View File

@@ -322,6 +322,14 @@ def results():
else:
return "No data found."
@app.route('/analyze')
def analyze():
return render_template('analyze.html');
@app.route('/log_viewer')
def log_viewer():
return render_template('log_viewer.html');
@app.route('/download_results')
def download_results():
data_files = glob.glob("data/*.csv")