mirror of
https://github.com/django/django.git
synced 2024-12-22 17:16:24 +00:00
55855bc6d0
Co-authored-by: Brock <bsmick97@gmail.com>
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 %}
|