Palette is a Django app to add command palette to your Django admin.. This will make it easy to navigate the Admin page with Ctrl/Cmd + k
-
Install palette from PyPI
pip install django-command-palette
-
Add
"palette"
to yourINSTALLED_APPS
setting like this::INSTALLED_APPS = [ ... 'palette.apps.PaletteConfig', 'palette.apps.PaletteAdminConfig', # django.contrib.admin # Remove this line from code ]
-
Start the development server and visit http://127.0.0.1:8000/admin/
-
Visit http://127.0.0.1:8000/admin and type
Ctrl/Cmd + K
This project is heavily inspired by kbar