Opened 19 years ago
Closed 18 years ago
#1888 closed defect (fixed)
Small interface inaccuracy when using filter_interface=models.VERTICAL
| Reported by: | wnielson | Owned by: | Ryan Kanno |
|---|---|---|---|
| Component: | contrib.admin | Version: | |
| Severity: | normal | Keywords: | sprintsept14 |
| Cc: | Triage Stage: | Ready for checkin | |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
when using
models.ManyToManyField(filter_interface=models.VERTICAL)
the arrow icon next to
Select your choice(s) and click
points to the right and should point down. In addition,
'Choose all', 'Clear all'
options do not appear in this mode.
Attachments (1)
Change History (7)
comment:1 by , 19 years ago
| Summary: | 'Select your choice(s) and click' issues → Small interface inaccuracy when using filter_interface=models.VERTICAL |
|---|
comment:2 by , 19 years ago
| Triage Stage: | Unreviewed → Accepted |
|---|
comment:3 by , 18 years ago
| Has patch: | set |
|---|---|
| Owner: | changed from to |
Widgets.css has the following:
.stacked .selector-chooseall, .stacked .selector-clearall { display:none; }
so it's apparent chooseall and clearall were hidden for models.VERTICAL.
The attached patch corrects the other small issue.
comment:4 by , 18 years ago
| Keywords: | sprintsept14 added |
|---|
by , 18 years ago
| Attachment: | django_filter_interface.diff added |
|---|
more DRY as suggested by SmileyChris
comment:5 by , 18 years ago
| Triage Stage: | Accepted → Ready for checkin |
|---|
comment:6 by , 18 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Albiet small, it sounds like a valid bug.