Django DeleteView
Create a Django DeleteView class The Django DeleteView class allows you to define a class-based view that displays a confirmation page and deletes an existing object. If the HTTP request method is GET, the DeleteView view will display the confirmation page. However, if the request is POST, the DeleteView view will delete the object. To use the DeleteView class, you defineContinue Reading