class UpdateView(SingleObjectTemplateResponseMixin, BaseUpdateView):
Class Variable | template_name_suffix |
Undocumented |
Inherited from SingleObjectTemplateResponseMixin
:
Method | get_template_names |
Return a list of template names to be used for the request. May not be called if render_to_response() is overridden. Return the following list: |
Class Variable | template_name_field |
Undocumented |
Inherited from TemplateResponseMixin
(via SingleObjectTemplateResponseMixin
):
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 BaseUpdateView
:
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
(via BaseUpdateView
):
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 BaseUpdateView
, 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 BaseUpdateView
, ModelFormMixin
, FormMixin
):
Class Variable | extra_context |
Undocumented |
Inherited from SingleObjectMixin
(via BaseUpdateView
, 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 BaseUpdateView
, ModelFormMixin
, SingleObjectMixin
):
Class Variable | extra_context |
Undocumented |
Inherited from ProcessFormView
(via BaseUpdateView
):
Method | put |
Undocumented |