Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to modify default admin action "delete_selected"

share|improve this question
Please specify how you want to modify it? – DTing Apr 8 '11 at 8:49

2 Answers

Action docs

delete selected:

If you wish to override this behavior, simply write a custom action which accomplishes deletion in your preferred manner – for example, by calling Model.delete() for each of the selected items.

This discussion has an example of overriding 'delete_selected' for a model. It could be implemented like this:

class SomeModelAdmin(admin.ModelAdmin):
    actions = ['custom_delete_selected']
    def custom_delete_selected(self, request, queryset):
         #custom delete code
    custom_delete_selected.short_description = "Delete selected items"

    def get_actions(self, request):
        actions = super(SomeModelAdmin, self).get_actions(request)
        del actions['delete_selected']
        return actions 
share|improve this answer

http://docs.djangoproject.com/en/dev/ref/contrib/admin/actions/#adding-actions-to-the-modeladmin

You can write custom actions, so overwriting the delete_selected action will allow you to carry out whatever functionality you need (see the warning box on the top of the page which mentions overwriting the delete() action)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.