views.generic.edit.DeleteView
  • References/Python/Django/API/Built-in class-based views API/Generic editing views

class django.views.generic.edit.DeleteView A view that displays a confirmation page and deletes an existing object. The given

2025-01-10 15:47:30
views.generic.edit.UpdateView.template_name_suffix
  • References/Python/Django/API/Built-in class-based views API/Generic editing views

template_name_suffix The UpdateView page displayed to a GET request uses a template_name_suffix

2025-01-10 15:47:30
views.generic.edit.FormView
  • References/Python/Django/API/Built-in class-based views API/Generic editing views

class django.views.generic.edit.FormView A view that displays a form. On error, redisplays the form with validation errors;

2025-01-10 15:47:30
views.generic.edit.CreateView.template_name_suffix
  • References/Python/Django/API/Built-in class-based views API/Generic editing views

template_name_suffix The CreateView page displayed to a GET request uses a template_name_suffix

2025-01-10 15:47:30
views.generic.edit.CreateView.object
  • References/Python/Django/API/Built-in class-based views API/Generic editing views

object When using CreateView you have access to self.object, which is the object being created. If

2025-01-10 15:47:30
views.generic.edit.UpdateView.object
  • References/Python/Django/API/Built-in class-based views API/Generic editing views

object When using UpdateView you have access to self.object, which is the object being updated.

2025-01-10 15:47:30
views.generic.edit.DeleteView.template_name_suffix
  • References/Python/Django/API/Built-in class-based views API/Generic editing views

template_name_suffix The DeleteView page displayed to a GET request uses a template_name_suffix

2025-01-10 15:47:30
views.generic.edit.UpdateView
  • References/Python/Django/API/Built-in class-based views API/Generic editing views

class django.views.generic.edit.UpdateView A view that displays a form for editing an existing object, redisplaying the form

2025-01-10 15:47:30
views.generic.edit.CreateView
  • References/Python/Django/API/Built-in class-based views API/Generic editing views

class django.views.generic.edit.CreateView A view that displays a form for creating an object, redisplaying the form with validation

2025-01-10 15:47:30