# TASK: v0.15.7 - Fix backup page storage display & rename system drive label ## Overview Two UI issues on the "Biztonsági mentés" (backup) page: 1. **Missing drives in storage overview** — The backup page only shows two drives (SSD + a single "Külső HDD"), while the dashboard and monitoring pages correctly show all registered storage paths (e.g., SSD, USB HDD 1TB, SYS Storage 350G). This is because the backup page template uses `SystemInfo.HDDConfigured`/`HDDTotalGB`/etc. (which only supports one HDD) instead of `StorageBars` (which iterates all registered storage paths). 2. **System drive label** — The root partition is labeled "SSD (/)" on all pages. It should be labeled "Rendszer (/)" (Hungarian for "System") since the root filesystem isn't always on an SSD. --- ## Changes Required ### 1. Add `StorageBars` data to the backup handler **File:** `controller/internal/web/handlers.go` In the `backupsHandler` function (around line 432), the `StorageBars` data is NOT passed to the template (unlike `dashboardHandler` and `monitoringHandler` which both call `s.buildStorageBars()`). **Action:** Add this line after the `SystemInfo` assignment (around line 436): ```go data["StorageBars"] = s.buildStorageBars() ``` Place it right after `data["SystemInfo"] = system.GetInfo(...)`, same pattern as `monitoringHandler` (line 395). ### 2. Update backup page template to use `StorageBars` **File:** `controller/internal/web/templates/backups.html` The "Tárhely áttekintés" section (lines 26-70) currently has: - A hardcoded "SSD (/)" bar from `$.SystemInfo` - A single "Külső HDD" bar gated by `{{if .HDDConfigured}}` **Replace** lines 29-51 (the `