From e1a61ea6da76f2c4fe37b757c162a686f4dac5c5 Mon Sep 17 00:00:00 2001 From: overcuriousity Date: Sun, 18 Jan 2026 01:58:58 +0100 Subject: [PATCH] Disable template auto-generation to preserve spider web chart customizations --- analyze_results.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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():