class django.views.generic.edit.FormView A view that displays a form. On error, redisplays the form with validation errors;
template_name_suffix The UpdateView page displayed to a GET request uses a template_name_suffix
class django.views.generic.edit.DeleteView A view that displays a confirmation page and deletes an existing object. The given
template_name_suffix The CreateView page displayed to a GET request uses a template_name_suffix
object When using CreateView you have access to self.object, which is the object being created. If
object When using UpdateView you have access to self.object, which is the object being updated.
template_name_suffix The DeleteView page displayed to a GET request uses a template_name_suffix
class django.views.generic.edit.CreateView A view that displays a form for creating an object, redisplaying the form with validation
class django.views.generic.edit.UpdateView A view that displays a form for editing an existing object, redisplaying the form