mirror of
https://github.com/django/django.git
synced 2025-03-12 18:30:48 +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 %}
|