djLint/tests/source_django/recursive_include.html

8 lines
204 B
HTML
Raw Normal View History

2021-12-14 08:57:37 +00:00
Recursion!
{% for comment in comments %}
{{ comment.comment }}
{% if comment.children %}
{% include "recursive_include.html" with comments=comment.children %}
{% endif %}
{% endfor %}