Opened 5 years ago
Closed 5 years ago
#31353 closed Cleanup/optimization (wontfix)
Improved performance of admin changeform_view.
Reported by: | Hasan Ramezani | Owned by: | Hasan Ramezani |
---|---|---|---|
Component: | contrib.admin | Version: | 3.0 |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | yes | UI/UX: | no |
Description
There is a check for formset and form validation in ModelAdmin._changeform_view
if all_valid(formsets) and form_validated:
We can change the order of checks to prevent validation of all formsets when form_validated=Flase
:
if form_validated and all_valid(formsets):
Here is the PR.
Change History (3)
comment:1 by , 5 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:2 by , 5 years ago
comment:3 by , 5 years ago
Resolution: | → wontfix |
---|---|
Status: | assigned → closed |
Thanks for this ticket, however I agree with Simon, we can omit formsets
validation if we swap this conditions.
Note:
See TracTickets
for help on using tickets.
I suspect things are done this way for a reason, swapping the order around won't call
is_valid
on each inline formsets and prevent validation errors from showing up unless the form is valid.