What is the easiest way to add keyboard shortcuts to Django admin panel without overriding admin templates? Like new object, save object, delete object and etc.
1 Answer
I don't know if this is possible.
You could just override the admin template and extend it, so you could load a custom JS file to do your shortcuts.
Check out this answer, i believe it may help you:
How to load a custom JS file in Django admin home?