6

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.

Tom Tichý
  • 1,065
  • 1
  • 12
  • 19

1 Answers1

1

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

yetty
  • 2,326
  • 2
  • 19
  • 22