class documentation

class FormView(TemplateResponseMixin, BaseFormView):

View In Hierarchy

A view for displaying a form and rendering a template response.

Inherited from TemplateResponseMixin:

Method get​_template​_names Return a list of template names to be used for the request. Must return a list. May not be called if render_to_response() is overridden.
Method render​_to​_response Return a response, using the response_class for this view, with a template rendered with the given context.
Class Variable content​_type Undocumented
Class Variable template​_engine Undocumented
Class Variable template​_name Undocumented

Inherited from FormMixin (via BaseFormView):

Method form​_invalid If the form is invalid, render the invalid form.
Method form​_valid If the form is valid, redirect to the supplied URL.
Method get​_context​_data Insert the form into the context dict.
Method get​_form Return an instance of the form to be used in this view.
Method get​_form​_class Return the form class to use.
Method get​_form​_kwargs Return the keyword arguments for instantiating the form.
Method get​_initial Return the initial data to use for forms on this view.
Method get​_prefix Return the prefix to use for forms.
Method get​_success​_url Return the URL to redirect to after processing a valid form.
Class Variable form​_class Undocumented
Class Variable initial Undocumented
Class Variable prefix Undocumented
Class Variable success​_url Undocumented

Inherited from ContextMixin (via BaseFormView, FormMixin):

Class Variable extra​_context Undocumented

Inherited from ProcessFormView (via BaseFormView):

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