Hi there... I've extended my User model (with both UserProfile and UserPaymentInformation) to hold additional information about a user. I'm able to add both to my admin area using Inlines (and re- registering my admin site)...
However, I'm facing a problem that I'm not sure how to resolve: A very important part of user administration for me is an "Approval queue", so, basically when a new user registers, he's put in a queue until an administrator approves him...(the queue is just a boolean field of my UserProfile named is_in_queue) My problem is: I would like to be able to display a list of users that are in the queue... I tried using list_filter, but I can't filter my User list using a UserProfile field ... here is my UserAdmin so far: class MyUserAdmin(UserAdmin): inlines = [UserPaymentInfoInline, UserProfileInline] list_display = UserAdmin.list_display + (user_in_queue,) Since list_display can be a callable, I added a function (user_in_queue) that returns whether or not the user is in the queue, which is great, but I still can't filter (or order) my users based on the fact that they are in a queue, which is what I need for the approval process... Having to scroll through the whole user list to find out which ones are in the queue makes no sense... I thought about adding a custom admin view that would only list the users that are in the queue... That worked out well.. however, that custom view will not show up on the Admin Index site... So basically to sum it up: Can I filter my User list based on a UserProfile field? If not, can I add a custom view that's accessible from the front page without having to create a completely new AdminSite only for that? Any help would be appreciated! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---