mirror of
https://github.com/Hopiu/djLint.git
synced 2026-05-19 10:31:07 +00:00
7 lines
204 B
HTML
7 lines
204 B
HTML
Recursion!
|
|
{% for comment in comments %}
|
|
{{ comment.comment }}
|
|
{% if comment.children %}
|
|
{% include "recursive_include.html" with comments=comment.children %}
|
|
{% endif %}
|
|
{% endfor %}
|