Class BaseCreateView
Base view for creating a new object instance.
Declaration
source linkDocumentation
Using this base class requires subclassing to provide a response mixin.
Methods
▶ def get(self, request, *args, **kwargs) overrideinherited doc Handle GET requests: instantiate a blank version of the form.
▶ def post(self, request, *args, **kwargs) overrideinherited doc Handle POST requests: instantiate a form instance with the passed POST variables and then check if it's valid.