views.generic.edit.CreateView.object

object

When using CreateView you have access to self.object, which is the object being created. If the object hasn’t been created yet, the value will be None.

Example myapp/views.py:

1
2
3
4
5
6
from django.views.generic.edit import CreateView
from myapp.models import Author
 
class AuthorCreate(CreateView):
    model = Author
    fields = ['name']

Example myapp/author_form.html:

1
2
3
4
<form action="" method="post">{% csrf_token %}
    {{ form.as_p }}
    <input type="submit" value="Save" />
</form>
doc_Django
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.