Re: Understanding users auth in Django

2013-04-15 Thread Russell Keith-Magee
On Mon, Apr 15, 2013 at 11:56 AM, Nora Olsen wrote: > > > On Monday, April 15, 2013 8:46:37 AM UTC+8, Russell Keith-Magee wrote: >> >> >>> Should I be using the Admin Site? But the organization admin is really >>> not a super user/staff member of the app. >>> >> >> This question is orthogonal to

Re: Understanding users auth in Django

2013-04-14 Thread Nora Olsen
On Monday, April 15, 2013 8:46:37 AM UTC+8, Russell Keith-Magee wrote: > > >> Should I be using the Admin Site? But the organization admin is really >> not a super user/staff member of the app. >> > > This question is orthogonal to your other questions. Django's Admin site > isn't intended as

Re: Understanding users auth in Django

2013-04-14 Thread Venkatraman S
I've done something similar for my own personal project and i can share how i did it: I used the Django User. And then created a ProfileDetails model that has a OneToOneField with User. An Organization Model An Employee Model - Contains FK to Organization and User Also, i did implemented my own p

Re: Understanding users auth in Django

2013-04-14 Thread Russell Keith-Magee
On Mon, Apr 15, 2013 at 12:44 AM, Nora Olsen wrote: > Hi, > > I'm using Django 1.5 and I have looked at guardian / Userena / pinax user > accounts but I'm not sure how they work with the authentication mechanism > in Django. > > I'm creating a site that typically have the following the groups : >

Understanding users auth in Django

2013-04-14 Thread Nora Olsen
Hi, I'm using Django 1.5 and I have looked at guardian / Userena / pinax user accounts but I'm not sure how they work with the authentication mechanism in Django. I'm creating a site that typically have the following the groups : 1. Super Admin: Myself 2. Organization admin. This is created by