#16716 closed Bug (fixed)
Regression in admin changelist with failing related admin filters
Reported by: | Julien Phalip | Owned by: | nobody |
---|---|---|---|
Component: | contrib.admin | Version: | 1.3 |
Severity: | Release blocker | Keywords: | |
Cc: | Triage Stage: | Accepted | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description (last modified by )
This issue was collaterally revealed by the report in #16714. When an admin filter spanning relationships is invalid (e.g. "?nonexistentrelated__blah=9999
", or "?existentrelated__nonexistentfield=9999
"), the changelist simply crashes and returns a 500 page. Up to Django 1.3, such an anomaly would cause a 302 redirection (accompanied with the "?e=1
" querystring) instead of crashing.
This regression possibly occurred when the Changelist
class was slightly modified to build the custom admin filters feature.
Change History (5)
comment:1 by , 13 years ago
Description: | modified (diff) |
---|---|
Triage Stage: | Unreviewed → Accepted |
comment:2 by , 13 years ago
Severity: | Normal → Release blocker |
---|
comment:3 by , 13 years ago
OK, actually the regression only affects the case of "?nonexistantrelated__blah=xxxxx
". I'll push a fix for that soon.
The case of "?existantrelated__nonexistantfield=xxxxx
" also crashes but that problem exists in 1.2 and 1.3 too, so it's not a regression. I'll create a separate ticket for that.
Fixed formatting:)