i can imagine it in _changeform_view, row 1598:
{{{
if all_valid(formsets) and form_validated:
if "_saveasnew" in request.POST or "_save" in request.POST or ...
_addanother or _continue.... :
}}}
What i can achieve with that:
if '_save' is omitted, i can see in response without call save model and
save fieldsets that all my forms and formsets are valid.
Right now it is not possible: or not valid, or save all and call
self.response_{add or change}.
--
Ticket URL: <https://code.djangoproject.com/ticket/33528>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* status: new => closed
* resolution: => wontfix
Comment:
As far as I understand correctly, you would like to add an option to
validate data without saving anything, however Django Admin is not a
[https://docs.djangoproject.com/en/stable/ref/contrib/admin/#module-
django.contriab.admin universal tool for building an app] and adding a new
option that is not used by Django Admin itself is always controversial.
Please first start a discussion on the DevelopersMailingList, where you'll
reach a wider audience and see what other think, and
[https://docs.djangoproject.com/en/stable/internals/contributing/bugs-and-
features/#requesting-features follow the guidelines with regards to
requesting features].
--
Ticket URL: <https://code.djangoproject.com/ticket/33528#comment:1>