-2

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.

Rovshan Musayev
  • 144
  • 3
  • 15

1 Answers1

1

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?