Re: allow certain users to access certain views

2015-02-19 Thread sum abiut
Hi James, Thanks heaps for direction. Cheers On Thu, Feb 19, 2015 at 6:18 PM, James Schneider wrote: > You should be able to handle this pretty easily with Django's built-in > permission system. > > Just create a group, add the users to it, and assign the requisite > permissions to the group.

Re: allow certain users to access certain views

2015-02-18 Thread James Schneider
You should be able to handle this pretty easily with Django's built-in permission system. Just create a group, add the users to it, and assign the requisite permissions to the group. Our add the needed permissions individually to each user. https://docs.djangoproject.com/en/1.7/topics/auth/defaul

allow certain users to access certain views

2015-02-18 Thread sum abiut
Hi, I have an app that i am trying to allow only certain users to access specific views. For example all users can view the home page but for a certain link. i only want to allow the HR manager to access it. Could you please point me to right direction. Cheers -- You received this message becau