Drag&Drop & MPTT
MPTT is incredible useful when requiring tree structures in a django app. It is even more awesome by using [django-treeadmin](https://github.com/piquadrat/django-treeadmin). This app enables you to drag&drop mptt model instances in the django admin. It is based on the feinCMS framework. * Install django-treeadmin: pip install django-treeadmin pip freeze > requirements.txt * Add treeadmin to your apps in your settings.py file * In your admin.py file, add the following: from treeadmin.admin import TreeAdmin class MyModelAdmin(TreeAdmin): pass site.register(models.MyModel, MyModelAdmin) Now you can drag&drop MPTT models in your django admin interface.










