1. Recursion!
    
  2. {% for comment in comments %}
    
  3.     {{ comment.comment }}
    
  4.     {% if comment.children %}
    
  5.         {% include "recursive_include.html" with comments=comment.children %}
    
  6.     {% endif %}
    
  7. {% endfor %}