class documentation

class DeletionMixin:

Known subclasses: django.views.generic.edit.BaseDeleteView

View In Hierarchy

Provide the ability to delete objects.
Method delete Call the delete() method on the fetched object and then redirect to the success URL.
Method get​_success​_url Undocumented
Class Variable success​_url Undocumented
Method post Undocumented
Instance Variable object Undocumented
def delete(self, request, *args, **kwargs):
Call the delete() method on the fetched object and then redirect to the success URL.
def get_success_url(self):

Undocumented

success_url =

Undocumented

def post(self, request, *args, **kwargs):

Undocumented

object =

Undocumented