From c64d7b9534085603bb6fd601401c310d972b8087 Mon Sep 17 00:00:00 2001 From: Disco DeDisco Date: Tue, 12 May 2026 21:01:59 -0400 Subject: [PATCH] =?UTF-8?q?my=5Fposts:=20owner-posts=20pane=20title=20`@'s=20Posts`=20=E2=86=92=20`Posts=20by=20Me`=20=E2=80=94?= =?UTF-8?q?=20symmetrises=20w.=20the=20right=20pane's=20`Posts=20by=20Othe?= =?UTF-8?q?rs`=20(both=20panes=20now=20read=20as=20point-of-view=20labels?= =?UTF-8?q?=20rather=20than=20one=20identity-stamped=20+=20one=20generic),?= =?UTF-8?q?=20and=20drops=20the=20`@`=20reveal=20from=20a=20screen?= =?UTF-8?q?=20the=20owner=20alone=20visits=20(handle=20is=20already=20in?= =?UTF-8?q?=20the=20navbar=20avatar=20tooltip);=20`handle=20=3D=20owner.us?= =?UTF-8?q?ername=20or=20owner.email`=20derivation=20goes=20w.=20it=20sinc?= =?UTF-8?q?e=20nothing=20else=20in=20the=20view=20referenced=20it?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Code architected by Disco DeDisco Git commit message Co-Authored-By: Claude Opus 4.7 --- src/apps/billboard/views.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/apps/billboard/views.py b/src/apps/billboard/views.py index 1449ab9..b9e389b 100644 --- a/src/apps/billboard/views.py +++ b/src/apps/billboard/views.py @@ -320,10 +320,9 @@ def my_posts(request, user_id): return redirect("/") if request.user.id != owner.id: return HttpResponseForbidden() - handle = owner.username or owner.email return render(request, "apps/billboard/my_posts.html", { "owner": owner, - "owner_posts_title": f"@{handle}'s Posts", + "owner_posts_title": "Posts by Me", "others_posts_title": "Posts by Others", "page_class": "page-billposts", })