Search code examples
pythondjangotreecontrol

Django:Is there a way to use a tree control in my template‏


Hi i wanted to know is there a way through which i could use a tree control in my template I wanted to add something like

Student
    |_Name
       |_Address
       |_Contact No

I think you guys get the picture...How can i add something like that in my template...Thanks


Solution

  • django-mptt has template tags for displaying tree structures. I'm not sure whether it would be difficult to use them without storing your data as a tree in the database. This could be used to generate markup or json data for some JavaScript tree widgets.