On Thu, May 14, 2009 at 6:10 PM, ringemup <ringe...@gmail.com> wrote:
> > Is there a way to limit admin login to superusers? I'd like to set up > multiple admin areas -- one for regular users and one for superusers. > > Thanks! You can subclass the AdminSite Class and just overide the has_permission function to require a user to be a super_user: http://code.djangoproject.com/browser/django/trunk/django/contrib/admin/sites.py#L138 Although I would ask why would you want to. is_staff is the boolean that is used for this and then you can refine controls a little more between a superuser and a 'staff' member. You might be better off creating a staff group and putting all the people you are trying to have as staff there and then use the is_staff boolean for whether or not they can log into the admin, as it was supposed to do. I hope that helps, Michael --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---