class documentation

class BaseUpdateView(ModelFormMixin, ProcessFormView):

Known subclasses: django.views.generic.UpdateView

View In Hierarchy

Base view for updating an existing object.

Using this base class requires subclassing to provide a response mixin.

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.
Instance Variable object Undocumented

Inherited from ModelFormMixin:

Method form​_valid If the form is valid, save the associated model.
Method get​_form​_class Return the form class to use in this view.
Method get​_form​_kwargs Return the keyword arguments for instantiating the form.
Method get​_success​_url Return the URL to redirect to after processing a valid form.
Class Variable fields Undocumented

Inherited from FormMixin (via ModelFormMixin):

Method form​_invalid If the form is invalid, render the invalid form.
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​_initial Return the initial data to use for forms on this view.
Method get​_prefix Return the prefix to use for forms.
Class Variable form​_class Undocumented
Class Variable initial Undocumented
Class Variable prefix Undocumented
Class Variable success​_url Undocumented

Inherited from ContextMixin (via ModelFormMixin, FormMixin):

Class Variable extra​_context Undocumented

Inherited from SingleObjectMixin (via ModelFormMixin):

Method get​_context​_data Insert the single object into the context dict.
Method get​_context​_object​_name Get the name to use for the object.
Method get​_object Return the object the view is displaying.
Method get​_queryset Return the QuerySet that will be used to look up the object.
Method get​_slug​_field Get the name of a slug field to be used to look up by slug.
Class Variable context​_object​_name Undocumented
Class Variable model Undocumented
Class Variable pk​_url​_kwarg Undocumented
Class Variable query​_pk​_and​_slug Undocumented
Class Variable queryset Undocumented
Class Variable slug​_field Undocumented
Class Variable slug​_url​_kwarg Undocumented

Inherited from ContextMixin (via ModelFormMixin, SingleObjectMixin):

Class Variable extra​_context Undocumented

Inherited from ProcessFormView:

Method put Undocumented
def get(self, request, *args, **kwargs):
Handle GET requests: instantiate a blank version of the form.
def post(self, request, *args, **kwargs):
Handle POST requests: instantiate a form instance with the passed POST variables and then check if it's valid.