Re: Permissions front end management in Django

2022-05-04 Thread Ry
I had the same challenge and ended up building a form to handle this. Once posted, I took care of setting the various conditions on the respective users in the veiew. On Saturday, January 8, 2022 at 10:05:06 AM UTC-5 goldwy...@gmail.com wrote: > Control alt delete to all coding problem! > > On

Re: Permissions front end management in Django

2022-01-08 Thread oneanplusgold
Control alt delete to all coding problem! > On Jan 4, 2022, at 2:59 PM, Eugene TUYIZERE wrote: > > Derar Team, > > I have a django application and I want the admin to manage the permissions > for different functions. This should be done in way way like below: > > > > by editing you can all

Re: Permissions front end management in Django

2022-01-04 Thread Muhammad Juwaini Abdul Rahman
You can handle using conditions in template. Or search for library for role based permission. On Tue, 4 Jan 2022 at 19:00, Eugene TUYIZERE wrote: > Derar Team, > > I have a django application and I want the admin to manage the permissions > for different functions. This should be done in way wa

Permissions front end management in Django

2022-01-04 Thread Eugene TUYIZERE
Derar Team, I have a django application and I want the admin to manage the permissions for different functions. This should be done in way way like below: [image: image.png] by editing you can allow the user access,view, create, modify or delete the particular view. How can I achieve this in dj