Re: Recursively rendering in template

2008-09-24 Thread Scott Moonen
Haven't tried it, but off the top of my head it seems like you could accomplish this by combining 'with' (to temporarily rename the child) and 'include': *app/node.html:* {{ node.name }} . . . {% for child in node.children %} {% with child as node %}{% include 'app/node.html' %}{% endwith %

Re: Recursively rendering in template

2008-09-24 Thread akonsu
hello, i do not see a way to do it without a custom tag. i myself do a similar thing using my own tag. konstantin On Sep 24, 2:17 pm, David Koblas <[EMAIL PROTECTED]> wrote: > I'm not sure if this is possible to do without writing a templatetag > (ok, that's my theory). > > Basic idea is that I