Is there a plugin tree application for Django with a good admin?

Or asked another way: is there a good pluggable admin for any existing tree-based applications?

I am trying to find a good way to process hierarchical data in a Django application. django-mptt and django-treebeard both seem to work well enough for the infrastructure, but the admin options I found are either broken or do not allow any simple reordering or are not dependent on installing a large external CMS.

All I want is a list of administrators that shows the hierarchy and allows some sort of reordering (drag n drop optionally, I will set up / down arrows!).

+3
source share

Source: https://habr.com/ru/post/1787971/


All Articles