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 %}