#26872 closed Bug (fixed)
Django Admin filter choice list can overflow the whole page
Reported by: | Damien | Owned by: | Kenneth |
---|---|---|---|
Component: | contrib.admin | Version: | 1.9 |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Accepted | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | yes |
Easy pickings: | yes | UI/UX: | yes |
Description
In the django admin model listing interface, if the length of a filter choice is too big, it's gonna overflow the whole page.
The solution here can be to do:
#changelist-filter a { .... text-overflow: ellipsis; overflow: hidden; }
But the user is loosing the full value, so a title
should be added too to the link
Change History (10)
comment:1 by , 8 years ago
Triage Stage: | Unreviewed → Accepted |
---|
comment:2 by , 8 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:3 by , 8 years ago
Has patch: | set |
---|
follow-up: 5 comment:4 by , 8 years ago
Patch needs improvement: | set |
---|
comment:5 by , 8 years ago
Sorry this is my first time contributing to Django. Do you think I need to write a separate test for my patch or just fix the existing ones?
Replying to timgraham:
A few test failures need to be fixed.
comment:7 by , 8 years ago
comment:9 by , 8 years ago
Thanks, that was fast ! I was first planning on submitting the PR myself but it got picked up so quickly :)
A few test failures need to be fixed.