mirror of
https://github.com/django/django.git
synced 2025-01-10 10:26:34 +00:00
8 lines
215 B
HTML
8 lines
215 B
HTML
|
Recursion!
|
||
|
{% for comment in comments %}
|
||
|
{{ comment.comment }}
|
||
|
{% if comment.children %}
|
||
|
{% include "./recursive_relative_include.html" with comments=comment.children %}
|
||
|
{% endif %}
|
||
|
{% endfor %}
|