Hi, I was trying to implement the django-mptt in my project. i was
following the tutorial in
http://django-mptt.github.com/django-mptt/tutorial.html
and it worked fine. The problem for me is that in the template, before
i display the child nodes i need to do apply some logic for each of
those nodes. Since {{ children }} is displayed in formatted html
block i am not able to do those logical checks on the data. So how can
i loop through the child node just like the parent node in a template?
Thanks