blob: ae49cc0a43677e1f64848a041054ba2fa03a003b (
plain)
1
2
3
4
5
6
7
|
Recursion!
{% for comment in comments %}
{{ comment.comment }}
{% if comment.children %}
{% include "./recursive_relative_include.html" with comments=comment.children %}
{% endif %}
{% endfor %}
|