문제

I would like to achieve acyclic graph structure in Django. For example I have some categories in tree structure:

Guitars
- Classical Guitars
- Western Guitars
- Guitars for Children

Ukuleles
- Soprano Ukulele
- Concert Ukulele
- Baryton Ukulele
- Ukuleles for Children

Now I would like to add category For Children and create link to existing categories Guitars for Children and Ukuleles for Children. But I have to avoid cycles in this graph.

What is the easiest way to achieve it? Is possible to use django-mptt? I need it dynamic and easy modifiable in administration. You can image it like categories structure in complex eshop.

도움이 되었습니까?

해결책

You can try django-dag. I don't have much experience with it, but it could fit.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top