Thanks, that looks like a good place to start.

I'm literally setting up two separate admin sites -- I need to prevent
the "staff" from even accessing the site for the superusers, as it
presents a lot of options I don't want to even be visible to them,
displays different inlines, etc.


On May 14, 7:31 pm, Michael <newmani...@gmail.com> wrote:
> 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/adm...
>
> 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
-~----------~----~----~----~------~----~------~--~---

Reply via email to