{{define "dashboard"}} {{template "layout_start" .}}
{{.RunningCount}}
Futó alkalmazás
{{.StoppedCount}}
Leállítva
{{.TotalCount}}
Összes alkalmazás
{{if .SystemInfo.TotalMemMB}}
Memória {{fmtMB .SystemInfo.UsedMemMB}} / {{fmtMB .SystemInfo.TotalMemMB}} ({{printf "%.0f" .SystemInfo.MemPercent}}%)
CPU {{printf "%.0f" .SystemInfo.CPUPercent}}%
Load: {{fmtLoad .SystemInfo.LoadAvg1}} / {{fmtLoad .SystemInfo.LoadAvg5}} / {{fmtLoad .SystemInfo.LoadAvg15}}
{{if .SystemInfo.TemperatureCelsius}}
Hőmérséklet {{fmtTemp .SystemInfo.TemperatureCelsius}}
{{end}}
Rendszer (/) {{fmtGB .SystemInfo.DiskUsedGB}} / {{fmtGB .SystemInfo.DiskTotalGB}} ({{printf "%.0f" .SystemInfo.DiskPercent}}%)
{{range .StorageBars}} {{if .Disconnected}}
{{.Label}} Leválasztva
{{else}}
{{.Label}} {{fmtGB .UsedGB}} / {{fmtGB .TotalGB}} ({{printf "%.0f" .Percent}}%)
{{end}} {{end}}
{{if .DiskWarnings}}
{{range .DiskWarnings}}
{{.Message}} {{if .Link}}{{.LinkText}} →{{end}}
{{end}}
{{end}}
{{end}} {{if .BackupEnabled}}

Biztonsági mentés

{{if .BackupStatus}}
Utolsó mentés: {{if .BackupStatus.Success}} {{.BackupStatus.LastRun.Format "2006-01-02 15:04"}} {{else}} Sikertelen {{end}}
{{else}}
Utolsó mentés: Még nem futott
{{end}} {{if .DBDumpStatus}}
Adatbázisok: {{len .DBDumpStatus.Results}} mentve
{{end}} {{/* Cross-drive ("2. mentés") moved to the host agent in slice 8C — the dashboard handler no longer provides CrossDrive* fields, so the old block was a dead reference that 500'd the dashboard (gt 0). Removed in v0.41.2. */}}
{{end}}

Telepített alkalmazások

{{range .Stacks}}
{{.Meta.DisplayName}} {{if .Meta.Description}}{{.Meta.Description}}{{end}}
{{stateLabel .State}} {{if .Orphaned}}Elavult{{end}} {{if .Protected}} Védett {{if isOperational .State}} {{end}} {{else if not .Deployed}} Telepítés {{else}} {{if isOperational .State}} {{$subdomain := index $.Subdomains .Name}} {{if $subdomain}}Megnyitás ↗{{end}} {{else}} {{if not .Orphaned}}{{end}} {{end}} Napló {{if .Orphaned}}{{end}} {{end}}
{{else}}

Nincs elérhető alkalmazás.

{{end}}
{{template "layout_end" .}} {{end}}