Skip to content

Instantly share code, notes, and snippets.

@cansadadeserfeliz
Last active May 13, 2020 14:00
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save cansadadeserfeliz/9f98e8c743927d9b680d to your computer and use it in GitHub Desktop.
Save cansadadeserfeliz/9f98e8c743927d9b680d to your computer and use it in GitHub Desktop.
Django: how to remove delete action/button from admin
class MyAdmin(admin.ModelAdmin):
def has_delete_permission(self, request, obj=None):
return False
def get_actions(self, request):
actions = super(MyAdmin, self).get_actions(request)
if 'delete_selected' in actions:
del actions['delete_selected']
return actions
@Allan-Nava
Copy link

it works

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment