Hook for customizing the delete process for the delete view and the "delete selected" action.
(self, objs, request)
| 2470 | ) |
| 2471 | |
| 2472 | def get_deleted_objects(self, objs, request): |
| 2473 | """ |
| 2474 | Hook for customizing the delete process for the delete view and the |
| 2475 | "delete selected" action. |
| 2476 | """ |
| 2477 | return get_deleted_objects(objs, request, self.admin_site) |
| 2478 | |
| 2479 | @csrf_protect_m |
| 2480 | def delete_view(self, request, object_id, extra_context=None): |
no test coverage detected