I\'ve managed to disable the \"Delete selected\" action. Easy.
But a user can still click on an item and then there\'s the red Delete link at the bottom.
Simple :)
class DeleteNotAllowedModelAdmin(admin.ModelAdmin): # Other stuff here def has_delete_permission(self, request, obj=None): return False