package webui import "html" func renderSettings(opts HandlerOptions) string { version := opts.BuildLabel if version == "" { version = "dev" } return `
System Install
Install to RAM

Detecting boot source...

Checking...

Install to Disk
` + renderInstallInline() + `
Support Bundle

Downloads a tar.gz archive of all audit files, SAT results, and logs.

` + renderSupportBundleInline() + `
USB Black-Box
` + renderUSBExportInline() + `
Tool Check

Checking...

NVIDIA Self Heal
` + renderNvidiaSelfHealInline() + `
Network
` + renderNetworkInline() + `
Services
` + renderServicesInline() + `
Build Info
Version` + html.EscapeString(version) + `
Title` + html.EscapeString(opts.Title) + `
Power
` }