Simply that, I want to send some data after making a delete for a DeleteView
without the necessity of load a success_url
, I used to do that within the form_valid
method in CreateView
and UpdateView
but I don't know which method call after making the delete for return a HttpResponse
with some JSON data.
Any ideas?