I have a Model with a delete method that accepts 2 arguments. What do I need to override to make sure my custom delete method is what is called from django admin? The version am using still doesn’t have delete_model so I cant use that.
I have a Model with a delete method that accepts 2 arguments. What do
Share
What I ended up doing was writing my own custom delete action that made use of my custom delete method instead of using the queryset’s bulk delete