class FormMixin(ContextMixin):
Known subclasses: django.views.generic.edit.BaseDeleteView
, django.views.generic.edit.BaseFormView
, django.views.generic.edit.ModelFormMixin
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
:
Class Variable | extra_context |
Undocumented |
django.views.generic.edit.ModelFormMixin
django.views.generic.edit.ModelFormMixin
django.views.generic.edit.ModelFormMixin