package webui import "html" func renderSettings(opts HandlerOptions) string { version := opts.BuildLabel if version == "" { version = "dev" } return `
Blackbox Logging

Continuous hardware monitoring that writes a rolling log of sensor readings to the export directory. Useful for capturing thermal or power anomalies during long runs.

Loading...
NVIDIA Recovery

Reset NVIDIA GPU driver state. Use when nvidia-smi reports errors or GPUs appear stuck after a failed test.

Build Info
Version` + html.EscapeString(version) + `
Title` + html.EscapeString(opts.Title) + `
` }