Opened 19 years ago
Closed 19 years ago
#1155 closed enhancement (wontfix)
should have horizontal group selection in admin interface
Reported by: | oggie rob | Owned by: | Adrian Holovaty |
---|---|---|---|
Component: | contrib.admin | Version: | |
Severity: | trivial | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Better to use filter_interface=meta.HORIZONTAL for groups in the django.models.auth.User model. The list selection is not very intuitive and this differs from the way non-group permissions are presented.
- groups = meta.ManyToManyField(Group, blank=True,
+ groups = meta.ManyToManyField(Group, blank=True, filter_interface=meta.HORIZONTAL,
Note:
See TracTickets
for help on using tickets.
Looks fine to me...