Opened 19 years ago
Closed 19 years ago
#1155 closed enhancement (wontfix)
should have horizontal group selection in admin interface
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...