Hi Alex, thanks for your help. I'm trying to do what you say in the following way:
class UserAdmin(_UserAdmin): def get_formsets(self, request, obj=None): try: student = Group.objects.get(name='student') except DoesNotExist: raise DoesNotExist, "The group 'student' does not exist" else: if student in obj.groups.all(): inst = StudentProfileInline(self.model, self.admin_site) yield inst.get_formset(request, obj) super(_UserAdmin, self).get_formsets(request, obj) admin.site.unregister(User) admin.site.register(User, UserAdmin) where _UserAdmin is django.contrib.auth.admin.UserAdmin But no inline appears in the admin interface, do you know what the error could be? From: Alex Gaynor Sent: Thursday, March 26, 2009 9:41 AM To: django-users@googlegroups.com Subject: Re: Conditional Inline in admin interface On Thu, Mar 26, 2009 at 11:11 AM, Marcos Marin <marcosma...@gmail.com> wrote: I have an app with three different kinds of users (staff, students and professors) and each of these have a unique profile model. I was recommended to use a proxy class to override get_profile() so that it will return the correct profile depending on the user's group and this seems to work. My problem now is with the admin interface. My ideal solution is to have the profile as an inline of the user, but show the correct inline model depending on the user's group. The only way I can think of doing this is using the get_urls() to create my own view but I think with this solution I would have to re-create a lot of things that already exist. Anyone have a better idea on how I can accomplish this? or at least how to do my idea re-using as much as possible from what already exists? Thanks! You should be able to do it by overiding the get_formsets method on the ModelAdmin: http://code.djangoproject.com/browser/django/trunk/django/contrib/admin/options.py#L357 Alex -- "I disapprove of what you say, but I will defend to the death your right to say it." --Voltaire "The people's good is the highest law."--Cicero --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---