From b00e68a8723c706a54a77a213430afcc1c9cd78a Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 20 Apr 2026 14:18:44 +0000 Subject: [PATCH] analytics: Make them visible to all staff Signed-off-by: Michael Tremer --- src/templates/blog/post.html | 2 +- src/templates/docs/page.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/templates/blog/post.html b/src/templates/blog/post.html index 2da51dea..dca14c61 100644 --- a/src/templates/blog/post.html +++ b/src/templates/blog/post.html @@ -165,7 +165,7 @@ {# Analytics #} {% if post.is_published() %} - {% if current_user and current_user.is_admin() %} + {% if current_user and current_user.is_staff() %}
diff --git a/src/templates/docs/page.html b/src/templates/docs/page.html index 6dcf3930..4ff43e55 100644 --- a/src/templates/docs/page.html +++ b/src/templates/docs/page.html @@ -65,7 +65,7 @@
{# Analytics #} - {% if current_user and current_user.is_admin() %} + {% if current_user and current_user.is_staff() %}
-- 2.47.3