is this the best way to use different forms for users in admin app?

=====================================================
class MyModelForm:
  ...

class RootMyModelForm:
  ...

class MyModelAdmin(admin.ModelAdmin):
    form = MyModelForm

    def get_form(self, request, obj=None, **kwargs):
        if request.user.is_superuser:
            self.form = RootMyModelForm
        else:
            self.form = MyModelForm

        return super(MyModelAdmin, self).get_form(request, obj, **kwargs)
=====================================================

other options?

Aljosa Mohorovic

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to