1
0
mirror of https://github.com/django/django.git synced 2025-01-10 10:26:34 +00:00
django/tests/template_tests/templates/recursive_relative_include.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
215 B
HTML
Raw Normal View History

Recursion!
{% for comment in comments %}
{{ comment.comment }}
{% if comment.children %}
{% include "./recursive_relative_include.html" with comments=comment.children %}
{% endif %}
{% endfor %}