Class SingleObjectMixin
Provide the ability to retrieve a single object for further manipulation.
Declaration
source linkDocumentation
Methods
▶ def get_context_data(self, **kwargs) override Insert the single object into the context dict.
▶ def get_object(self, queryset=None) Return the object the view is displaying.
Require `self.queryset` and a `pk` or `slug` argument in the URLconf.
Subclasses can override this to return any object.
Overrides
This method is overriden in:
▶ def get_queryset(self) Return the `QuerySet` that will be used to look up the object.
This method is called by the default implementation of get_object() and
may not be called if get_object() is overridden.
▷ def get_slug_field(self) Get the name of a slug field to be used to look up by slug.
Subclasses
Reexports