tags:

views:

49

answers:

1

What's the name of the widget that we use to assign user permission in admin page (under the "add users" option)?

How can I use it for other things?

+3  A: 

It sounds like you are talking about filter_horizontal.

To use it, add this to your admin config for each model you want to use it:

filter_horizontal = ('field1', 'field2',)

See the docs.

Jake
@Dominic: Cheers. @seema: Don't forget to give this answer a tick if it worked
Jake