views.generic.edit.ModelFormMixin

class django.views.generic.edit.ModelFormMixin A form mixin that works on ModelForms, rather than a standalone

2016-10-09 18:41:08
views.generic.edit.FormMixin.get_context_data()

get_context_data(**kwargs) New in Django 1.9. Calls

2016-10-09 18:41:06
views.generic.edit.FormMixin.form_invalid()

form_invalid(form) Renders a response, providing the invalid form as context.

2016-10-09 18:41:05
views.generic.edit.ModelFormMixin.form_invalid()

form_invalid() Renders a response, providing the invalid form as context.

2016-10-09 18:41:08
views.generic.edit.FormMixin

class django.views.generic.edit.FormMixin A mixin class that provides facilities for creating and displaying forms.

2016-10-09 18:41:05
views.generic.edit.DeletionMixin.success_url

success_url The url to redirect to when the nominated object has been successfully deleted.

2016-10-09 18:41:05
views.generic.edit.ProcessFormView.get()

get(request, *args, **kwargs) Renders a response using a context created with get_context_data().

2016-10-09 18:41:09
views.generic.edit.ProcessFormView.post()

post(request, *args, **kwargs) Constructs a form, checks the form for validity, and handles it accordingly.

2016-10-09 18:41:09
views.generic.edit.FormMixin.get_initial()

get_initial() Retrieve initial data for the form. By default, returns a copy of initial.

2016-10-09 18:41:06
views.generic.edit.ModelFormMixin.fields

fields A list of names of fields. This is interpreted the same way as the Meta.fields attribute of

2016-10-09 18:41:08