From 63905842fde797a16c92c16a85fc291a15410ff9 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Sat, 7 Mar 2026 20:52:02 +0000
Subject: [PATCH] fix(ui): move Help nav link outside auth conditional so it
shows for all visitors
Previously, duplicate Help links existed inside both branches of the
{% if multi_user_enabled and not is_logged_in %}...{% else %}...{% endif %}
conditional. This refactoring places a single Help link AFTER {% endif %}
in both the desktop and mobile menus, guaranteeing it renders for:
- Unauthenticated visitors (multi-user mode)
- Logged-in users (multi-user mode)
- All users in single-user / auth-disabled mode
Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
---
frontend/templates/base.html | 25 ++++++-------------------
1 file changed, 6 insertions(+), 19 deletions(-)
diff --git a/frontend/templates/base.html b/frontend/templates/base.html
index d29c66b3..8b142e6e 100644
--- a/frontend/templates/base.html
+++ b/frontend/templates/base.html
@@ -76,13 +76,6 @@
{% if request and request.url.path == '/about' %}aria-current="page"{% endif %}>
About
-
- Help
-
{% else %}
{# ── App nav (logged-in or single-user / auth-disabled mode) ────── #}
@@ -178,7 +171,9 @@
Status
-
+ {% endif %}{# end multi_user_enabled / is_logged_in check #}
+
+
Help
- {% endif %}{# end multi_user_enabled / is_logged_in check #}
-