You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

10 lines
215 B

{% load mptt_tags %}
{% recursetree object.comments.all %}
{% if not node.deactivated_at %}
{% include './comment.html' %}
{% if not node.is_leaf_node %}
{{ children }}
{% endif %}
{% endif %}
{% endrecursetree %}