The description of the get and the post method for the BaseUpdateView is
the same.
--
Ticket URL: <https://code.djangoproject.com/ticket/32440>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
Old description:
> Apparently there is a copy/paste in the documentation here:
> https://docs.djangoproject.com/en/3.1/ref/class-based-views/generic-
> editing/#django.views.generic.edit.BaseUpdateView.get
>
> The description of the get and the post method for the BaseUpdateView is
> the same.
New description:
Apparently there is a copy/paste in the documentation here:
https://docs.djangoproject.com/en/3.1/ref/class-based-views/generic-
editing/#django.views.generic.edit.BaseUpdateView.get
The description of the get and the post method for the BaseUpdateView is
the same. If it is not an error, maybe more details would be useful.
--
--
Ticket URL: <https://code.djangoproject.com/ticket/32440#comment:1>
* status: new => closed
* resolution: => invalid
Comment:
This is not an error, both methods do the same, see
[https://github.com/django/django/blob/e412b288455dd3ea6f1d65c8ec5d01751e489976/django/views/generic/edit.py#L188-L194
BaseUpdateView]. What kind of details are you expecting? `BaseUpdateView`
is only one of many ancestors which `UpdateView` inherits, it is not
intended to be used directly.
--
Ticket URL: <https://code.djangoproject.com/ticket/32440#comment:2>