From 2d3eef6531011f7299cf0e063039eca52f5af8f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lera=20Elvo=C3=A9?= Date: Sun, 23 Nov 2025 22:30:55 +0300 Subject: [PATCH] remove bookmark button from topic view --- app/templates/topics/topic.html | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/app/templates/topics/topic.html b/app/templates/topics/topic.html index e1b791a..eeb1e8a 100644 --- a/app/templates/topics/topic.html +++ b/app/templates/topics/topic.html @@ -1,5 +1,5 @@ -{% from 'common/macros.html' import pager, timestamp, bookmark_button %} -{% from 'common/icons.html' import icn_bookmark, icn_lock, icn_sticky %} +{% from 'common/macros.html' import pager, timestamp %} +{% from 'common/icons.html' import icn_lock, icn_sticky %} {% extends "base.html" %} {% block title %}browsing topic {{ topic['name'] }}{% endblock %} {% block content %} @@ -51,11 +51,6 @@ Started by {{ thread['started_by'] }} on {{ timestamp(thread['created_at']) }} - - {% if active_user and not active_user.is_guest() -%} - {{ bookmark_button(type="thread", id=thread.id) }} - {%- endif %} - Latest post by {{ thread['latest_post_username'] }}