I have in my databases a table called nodes
and where i have parent child relationship and i am using
http://django-mptt.github.io/django-mptt/tutorial.html
for nodes
Now i can display all the nodes in the same and that is no problem.
But what i want is that i have folder like structure that if someone clicks of parent folder
then i go to next view which will have its children only
and url will become
www.example.com/downloads/parentfolder
Then if user click on child folder1 then it shows its further children and url becomes
www.example.com/downloads/parentfolder/childfolder
how can i do that sort of thing
I want to do something like this
Django MPTT - how to query based on URL segments
But he didnt explain how he did it