remove bookmark button from topic view

This commit is contained in:
2025-11-23 22:30:55 +03:00
parent e874d41fbc
commit 2d3eef6531

View File

@@ -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 <a href="{{ url_for("users.page", username=thread['started_by']) }}">{{ thread['started_by'] }}</a> on {{ timestamp(thread['created_at']) }}
</span>
</span>
<span>
{% if active_user and not active_user.is_guest() -%}
{{ bookmark_button(type="thread", id=thread.id) }}
{%- endif %}
</span>
</span>
<span>
Latest post by <a href="{{ url_for("users.page", username=thread['latest_post_username']) }}">{{ thread['latest_post_username'] }}</a>