{% if user.is_authenticated %}
{% csrf_token %}
{% else %}

登陆 后评论

{% endif %}
{% load mptt_tags %}

一共有{{ comments.count }}条评论


{% recursetree comments %} {% with comment=node %}
{{ comment.commenter }} {% if comment.reply %} ---> {{ comment.reply }} {% endif %} {{ comment.create_time }} {% if user.is_authenticated %} {% else %} 回复 {% endif %}

{{ comment.content }}


{% if not comment.is_leaf_node %}
{{ children }}
{% endif %}
{% endwith %} {% endrecursetree %}