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