From eb17c10c2340dff60199098b0fa1183288d4e503 Mon Sep 17 00:00:00 2001 From: Aevann Date: Wed, 6 Sep 2023 21:04:52 +0300 Subject: [PATCH] remove unusued shit --- files/templates/comments.html | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/files/templates/comments.html b/files/templates/comments.html index 307e96e95..1ff559f13 100644 --- a/files/templates/comments.html +++ b/files/templates/comments.html @@ -68,14 +68,8 @@ {% endif %} {% if c.parent_post %} - {% if c.author_id==v.id and replies and is_notification_page %} - Comment {{'Replies' if (replies | length)>1 else 'Reply'}}: {{c.post.realtitle(v) | safe}} - {% elif c.post.author_id==v.id and c.level == 1 and is_notification_page %} - Post Reply: {{c.post.realtitle(v) | safe}} - {% elif is_notification_page and c.parent_post in v.subscribed_idlist %} + {% if c.parent_post in v.subscribed_idlist %} Subscribed Thread: {{c.post.realtitle(v) | safe}} - {% elif is_notification_page %} - Username Mention: {{c.post.realtitle(v) | safe}} {% else %} {{c.post.realtitle(v) | safe}} {% endif %}