Remove the Delete Button from the Django Admin Interface

Django
2011-06-17 01:10 (14 years ago)
Remove the Delete Button from the Django Admin Interface

Disable Deletion from List Checkboxes

Create a file like common/admins.py

from django.contrib import admin
admin.site.disable_action('delete_selected')

Disable Deletion from Detail Page

Create a file like common/admins.py

from django.contrib import admin
def has_delete_permission(self, request, obj=None):
    return False
admin.ModelAdmin.has_delete_permission = has_delete_permission
Current rating: 5.0 (3)
The author runs the application development company Cyberneura.
We look forward to discussing your development needs.

Categories

Archive