how do i implement the tree structure in django templates with out using django-mptt.
i have model.
class Person(TimeStampedModel): name = models.Ch
It's very simple
All you have to do in your view is get all objects:
people = Person.objects.all()
Then in your template :
{% for person in people %} - {{person.name}} {% for child in person.children.all %} * {{child.nom}} {% endfor %} {% endfor %}