From dd1356de85ac78909a94be7c33ee7ec7418c0796 Mon Sep 17 00:00:00 2001 From: Jon Froehlich Date: Wed, 22 Jul 2026 16:12:36 -0700 Subject: [PATCH] Add Team Members + Activity Log quick links to admin header Surfaces two easy-to-forget internal pages in the admin top-nav (userlinks): - Team Members -> /view-project-people/ (public project-team roster), which isn't linked from the main nav so it's easy to lose track of. - Activity Log -> the superuser-only LogEntry changelist (#1413), wrapped in {% if user.is_superuser %} to match the page's own gate. Co-Authored-By: Claude Opus 4.8 (1M context) --- website/templates/admin/base_site.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/templates/admin/base_site.html b/website/templates/admin/base_site.html index 562434eb..c9637c0e 100644 --- a/website/templates/admin/base_site.html +++ b/website/templates/admin/base_site.html @@ -15,6 +15,8 @@ {% endblock %} {% block userlinks %} + Team Members / + {% if user.is_superuser %}Activity Log /{% endif %} GitHub / {{ block.super }} {% endblock %}