diff --git a/analyze_results.py b/analyze_results.py index 1088c6f..cb01f4c 100644 --- a/analyze_results.py +++ b/analyze_results.py @@ -1701,8 +1701,10 @@ class WebInterface: ''' template_path = templates_dir / 'dashboard.html' - with open(template_path, 'w', encoding='utf-8') as f: - f.write(html_content) + # Commented out to preserve manual edits to dashboard.html + # Only uncomment this if you want to regenerate the template from scratch + # with open(template_path, 'w', encoding='utf-8') as f: + # f.write(html_content) def main():