Remove the Delete Button from the Django Admin Interface

Django
2011-06-17 10:10 (13 years ago) ytyng

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

Comments

Archive

2024
2023
2022
2021
2020
2019
2018
2017
2016
2015
2014
2013
2012
2011