adds views for analyzing and log viewer
This commit is contained in:
8
app.py
8
app.py
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user