March 2020
Intermediate to advanced
608 pages
17h 17m
English
First, set up the categories app as described in the previous, Creating hierarchical categories with django-mptt recipe. Then, we need to install the django-mptt-admin app by performing the following steps:
(env)$ pip install django-mptt-admin==0.7.2
# myproject/settings/_base.pyINSTALLED_APPS = [ # … "mptt", "django_mptt_admin",]
(env)$ python manage.py collectstatic