class documentation

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): (source)

Handle GET requests: instantiate a blank version of the form.

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

Handle POST requests: instantiate a form instance with the passed POST variables and then check if it's valid.

def put(self, *args, **kwargs): (source)

Undocumented