From 4a54af15cc32f1cc8abc06e4ff14dc42f2a05986 Mon Sep 17 00:00:00 2001 From: Mikhail Yenuchenko Date: Sun, 9 Aug 2026 21:18:49 +0300 Subject: [PATCH] feat(panel): label the nav username with "User:" Co-Authored-By: Claude Sonnet 5 --- CHANGELOG.md | 2 ++ internal/web/templates/layout.html | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cd695d..15ee935 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/); version - The panel's **Account** entry is now called **Settings** — nav link, page heading, and browser title. The route stays `/account`, so existing links and bookmarks are unaffected. +- The signed-in name in the panel's nav is now labelled `User:`, so it reads as + the current account rather than as a stray word above the Settings link. ### Fixed diff --git a/internal/web/templates/layout.html b/internal/web/templates/layout.html index 2b8eca2..8cdaed5 100644 --- a/internal/web/templates/layout.html +++ b/internal/web/templates/layout.html @@ -69,7 +69,7 @@ {{template "sections" .}}
- {{.User}} + User: {{.User}} {{if eq .Active "account"}}{{template "icon-account"}}Settings{{else}}{{template "icon-account"}}Settings{{end}}