August 2016
Beginner to intermediate
717 pages
15h 24m
English
If you want to use the common functionality of the change list, such as columns, admin actions, editable fields, or filters, in your administration interface as well as manipulate the tree structure in the same view, you need to use another third-party app called django-mptt-tree-editor. Let's see how to do that.
First, we need to have the django-mptt-tree-editor app installed. Perform the following steps:
(myproject_env)$ pip install django-mptt-tree-editor
INSTALLED_APPS in the settings, as follows:
# conf/base.py or settings.py INSTALLED_APPS = ( # ... "mptt_tree_editor" ...Read now
Unlock full access