From d2da7ccdbe03c7b63c283af178a12b5596ba8bee Mon Sep 17 00:00:00 2001 From: p9xvr8cjz <2775939221@qq.com> Date: Fri, 7 Nov 2025 19:04:54 +0800 Subject: [PATCH] Delete 'templates/comments/tags/comment_item_tree.html' --- .../comments/tags/comment_item_tree.html | 54 ------------------- 1 file changed, 54 deletions(-) delete mode 100644 templates/comments/tags/comment_item_tree.html diff --git a/templates/comments/tags/comment_item_tree.html b/templates/comments/tags/comment_item_tree.html deleted file mode 100644 index a9decd1..0000000 --- a/templates/comments/tags/comment_item_tree.html +++ /dev/null @@ -1,54 +0,0 @@ -{% load blog_tags %} -
  • -
    - - - -

    - {% if comment_item.parent_comment %} -

    回复 @{{ comment_item.parent_comment.author.username }} -
    - {% endif %} -

    - -

    {{ comment_item.body|escape|comment_markdown }}

    - - -
    - -
  • -{% query article_comments parent_comment=comment_item as cc_comments %} -{% for cc in cc_comments %} - {% with comment_item=cc template_name="comments/tags/comment_item_tree.html" %} - {% if depth >= 1 %} - {% include template_name %} - {% else %} - {% with depth=depth|add:1 %} - {% include template_name %} - {% endwith %} - {% endif %} - {% endwith %} -{% endfor %} \ No newline at end of file