From 42cec5dc9648d56bb8bee0a6e09738f558701e1f Mon Sep 17 00:00:00 2001 From: Jordan Robinson Date: Wed, 24 Sep 2025 22:53:31 +0100 Subject: [PATCH] fix use blog_user on public template --- main/templates/main/blog_posts.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/templates/main/blog_posts.html b/main/templates/main/blog_posts.html index 2c021025c99e4b81f43316a3701e1702c587dd48..a37dcaaa5d38be616c7fdcd4138397216e25e267 100644 --- a/main/templates/main/blog_posts.html +++ b/main/templates/main/blog_posts.html @@ -58,7 +58,7 @@ {% endif %} - {% if tag_cloud and request.user.show_tags_in_post_list %} + {% if tag_cloud and request.blog_user.show_tags_in_post_list %}
All tags: {% for tag, url, is_active in tag_cloud %} @@ -72,7 +72,7 @@ {% if item.post.published_at %}
  • {{ item.post.title }} - {% if item.post.tag_list and request.user.show_tags_in_post_list %} + {% if item.post.tag_list and request.blog_user.show_tags_in_post_list %} Tags: {% for tag, url, is_active in item.tag_urls %}