Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/template_tests/templates/recursive_include.html
blob: dc848f32af92683800001f2fb7cce7b4f1f71680 (plain)
1
2
3
4
5
6
7
Recursion!
{% for comment in comments %}
    {{ comment.comment }}
    {% if comment.children %}
        {% include "recursive_include.html" with comments=comment.children %}
    {% endif %}
{% endfor %}