Class FormMixin
Provide a way to show and handle a form in a request.
Declaration
source linkDocumentation
Methods
▷ def form_invalid(self, form) If the form is invalid, render the invalid form.
▶ def form_valid(self, form) If the form is valid, redirect to the supplied URL.
▷ def get_form(self, form_class=None) Return an instance of the form to be used in this view.
▶ def get_form_kwargs(self) Return the keyword arguments for instantiating the form.
▷ def get_initial(self) Return the initial data to use for forms on this view.
▷ def get_prefix(self) Return the prefix to use for forms.
▶ def get_success_url(self) Return the URL to redirect to after processing a valid form.
Overrides
This method is overriden in:
Subclasses