I would like to know a thing about django-mptt, as I'm considering using it for a engineering coordination project.
I would have a Model class (say, 'Interface'), with a ForeignKey to the Model (say, 'Location') in the Tree.
Will I be able to filter Interfaces by the depth of the Location they refer to ? The depth being the number of parents.
I don't know yet how to organize my data, this is why I'm asking. I'm considering using django-mptt (opposed to Models created by a loop at deployment time, each Model corresponding to a tree level), but I am scared that it would block me at a point and force me to review my whole project.
Found my answer finally : django-mptt dev documentation