Opened 18 years ago

Closed 18 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,

Change History (1)

comment:1 by Adrian Holovaty, 18 years ago

Resolution: wontfix
Status: newclosed

Looks fine to me...

Note: See TracTickets for help on using tickets.
Back to Top