class ProcessFormView(View):
Known subclasses: django.views.generic.edit.BaseCreateView
, django.views.generic.edit.BaseFormView
, django.views.generic.edit.BaseUpdateView
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 |