template_name_suffix
The UpdateView
page displayed to a GET
request uses a template_name_suffix
of '_form'
. For example, changing this attribute to '_update_form'
for a view updating objects for the example Author
model would cause the default template_name
to be 'myapp/author_update_form.html'
.
Please login to continue.