Skip to content

Instantly share code, notes, and snippets.

@maxwellamaral
Forked from maxwellcc/admin.py
Created September 6, 2022 12:38
Show Gist options
  • Save maxwellamaral/dce57bdefd4f9ede3448cfb6aabf7e5a to your computer and use it in GitHub Desktop.
Save maxwellamaral/dce57bdefd4f9ede3448cfb6aabf7e5a to your computer and use it in GitHub Desktop.
Django: apagar a ação delete do admin
def get_actions(self, request):
actions = super().get_actions(request)
if 'delete_selected' in actions:
del actions['delete_selected']
return actions
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment