How can I remove or change the verbose name of the default admin action “delete selected X item” in the Django admin panel?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Not sure if this sort of monkey-patching is a good idea, but shoving this in one of my
admin.pyworks for me:This will change the verbose name for all your admin sites. If you want to change it just for one particular model’s admin, I think you’ll need to write a custom admin action.
Tested with Django version 1.1: