class documentation

class ProcessFormView(View):

Known subclasses: django.views.generic.edit.BaseCreateView, django.views.generic.edit.BaseFormView, django.views.generic.edit.BaseUpdateView

View In Hierarchy

Render a form on GET and processes it on POST.
Method get Handle GET requests: instantiate a blank version of the form.
Method post Handle POST requests: instantiate a form instance with the passed POST variables and then check if it's valid.
Method put Undocumented
def get(self, request, *args, **kwargs):
Handle GET requests: instantiate a blank version of the form.
def post(self, request, *args, **kwargs):
Handle POST requests: instantiate a form instance with the passed POST variables and then check if it's valid.
def put(self, *args, **kwargs):

Undocumented