{{ if .Dashboard.TemperatureBar }} {{ template "temperature-bar" . }} {{ end }}
{{ $device.Product }}
{{ range $device := $devices }} {{ if $device.MainPSU }} {{ continue }} {{ end }} {{ if $device.HasSpeed }}
{{ $root.Lang "txtSpeed" }} {{ $device.Rpm }} RPM
{{ $root.Lang "txtProfile" }}
{{ end }} {{ if $device.HasTemps }}
{{ $device.Name }} {{ $device.TemperatureString }}
{{ end }} {{ if eq $device.Name "Power Out" }}
{{ $device.Name }} {{ $device.Watts }} W
{{ end }} {{ end }}
{{ range $device := $devices }} {{ if $device.HasSpeed }} {{ continue }} {{ else if $device.HasTemps }} {{ continue }} {{ else if eq $device.Name "Power Out" }} {{ continue }} {{ else if $device.MainPSU }} {{ continue }} {{ end }}
{{ $device.Name }} {{ $device.Label }}
{{ if $device.HasWatts }}
{{ $root.Lang "txtWatts" }} {{ $device.Watts }} W
{{ end }} {{ if $device.HasAmps }}
{{ $root.Lang "txtAmps" }} {{ $device.Amps }} A
{{ end }} {{ if $device.HasVolts }}
{{ $root.Lang "txtVolts" }} {{ $device.Volts }} V
{{ end }}
{{ end }}